Struct LivePropertyHandle
A handle that indentifies a property created in a LiveStream.
Namespace: Unity.LiveCapture
Assembly: Unity.LiveCapture.dll
Syntax
public struct LivePropertyHandle
Methods
Equals(object)
Determines whether the specified object is equal to the current LivePropertyHandle.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
object | obj | The object to compare with the current LivePropertyHandle. |
Returns
Type | Description |
---|---|
bool | true if the specified object is equal to the current LivePropertyHandle; otherwise, false. |
Overrides
Equals(LivePropertyHandle)
Determines whether the LivePropertyHandle instances are equal.
Declaration
public bool Equals(LivePropertyHandle other)
Parameters
Type | Name | Description |
---|---|---|
LivePropertyHandle | other | The other LivePropertyHandle to compare with the current object. |
Returns
Type | Description |
---|---|
bool | True if the specified object is equal to the current object; otherwise, false. |
GetHashCode()
Gets the hash code for the LivePropertyHandle.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
int | The hash value generated for this LivePropertyHandle. |
Overrides
Operators
operator ==(LivePropertyHandle, LivePropertyHandle)
Determines whether the two specified LivePropertyHandle are equal.
Declaration
public static bool operator ==(LivePropertyHandle a, LivePropertyHandle b)
Parameters
Type | Name | Description |
---|---|---|
LivePropertyHandle | a | The first LivePropertyHandle. |
LivePropertyHandle | b | The second LivePropertyHandle. |
Returns
Type | Description |
---|---|
bool | true if the specified LivePropertyHandle are equal; otherwise, false. |
operator !=(LivePropertyHandle, LivePropertyHandle)
Determines whether the two specified LivePropertyHandle are different.
Declaration
public static bool operator !=(LivePropertyHandle a, LivePropertyHandle b)
Parameters
Type | Name | Description |
---|---|---|
LivePropertyHandle | a | The first LivePropertyHandle. |
LivePropertyHandle | b | The second LivePropertyHandle. |
Returns
Type | Description |
---|---|
bool | true if the specified LivePropertyHandle are different; otherwise, false. |