Struct UserId
This struct holds information about a user identifier.
Inherited Members
Namespace: Unity.Cloud.Common
Assembly: Unity.Cloud.Common.dll
Syntax
public readonly struct UserId
Constructors
UserId(string)
Declaration
public UserId(string value)
Parameters
| Type | Name | Description |
|---|---|---|
| string | value | The string representing the user identifier |
Fields
None
Returns the value of an identifier representing an invalid user id
Declaration
public static readonly UserId None
Field Value
| Type | Description |
|---|---|
| UserId |
Methods
Equals(object)
Validates that obj is a UserId instance and that it has the same value as this instance.
Declaration
public override bool Equals(object obj)
Parameters
| Type | Name | Description |
|---|---|---|
| object | obj | Compare the values with this instance. |
Returns
| Type | Description |
|---|---|
| bool | true if both instances have the same values; false otherwise. |
Overrides
Equals(UserId)
Returns whether two UserId objects are equals.
Declaration
public bool Equals(UserId other)
Parameters
| Type | Name | Description |
|---|---|---|
| UserId | other |
Returns
| Type | Description |
|---|---|
| bool | true if both instances have the same values; false otherwise. |
GetHashCode()
Computes a hash code for the object.
Declaration
public override int GetHashCode()
Returns
| Type | Description |
|---|---|
| int | A hash code for the current object. |
Overrides
Remarks
- You should not assume that equal hash codes imply object equality.
- You should never persist or use a hash code outside the application domain in which it was created, because the same object may hash differently across application domains, processes, and platforms.
ToString()
Get the string representation of this UserId.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | The string result. |
Overrides
Operators
operator ==(UserId, UserId)
Returns whether two UserId instances are equal.
Declaration
public static bool operator ==(UserId left, UserId right)
Parameters
| Type | Name | Description |
|---|---|---|
| UserId | left | First instance. |
| UserId | right | Second instance. |
Returns
| Type | Description |
|---|---|
| bool |
explicit operator string(UserId)
Declaration
public static explicit operator string(UserId uId)
Parameters
| Type | Name | Description |
|---|---|---|
| UserId | uId | Object to cast |
Returns
| Type | Description |
|---|---|
| string | The resulting string |
operator !=(UserId, UserId)
Returns whether two UserId instances are different.
Declaration
public static bool operator !=(UserId left, UserId right)
Parameters
| Type | Name | Description |
|---|---|---|
| UserId | left | First instance. |
| UserId | right | Second instance. |
Returns
| Type | Description |
|---|---|
| bool |