Struct OrganizationId
This struct holds information about organization identifier.
Inherited Members
Namespace: Unity.Cloud.Common
Syntax
public readonly struct OrganizationId
Constructors
OrganizationId(String)
Returns a OrganizationId using a String.
Declaration
public OrganizationId(string value)
Parameters
Type | Name | Description |
---|---|---|
String | value | The string representing the organization identifier |
Fields
None
Return the value of an identifier representing an invalid organization id
Declaration
public static readonly OrganizationId None
Field Value
Type | Description |
---|---|
OrganizationId |
Methods
Equals(Object)
Validate obj
is a OrganizationId instance and have the same values as this instance.
Declaration
public override readonly bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
Object | obj | Compare the values with this instance. |
Returns
Type | Description |
---|---|
Boolean | true if both instance have the same values; false otherwise. |
Overrides
Equals(OrganizationId)
Returns whether two OrganizationId objects are equals.
Declaration
public readonly bool Equals(OrganizationId other)
Parameters
Type | Name | Description |
---|---|---|
OrganizationId | other |
Returns
Type | Description |
---|---|
Boolean | true if both instance have the same values; false otherwise. |
GetHashCode()
Compute a hash code for the object.
Declaration
public override readonly int GetHashCode()
Returns
Type | Description |
---|---|
Int32 | 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 OrganizationId.
Declaration
public override readonly string ToString()
Returns
Type | Description |
---|---|
String | The string result. |
Overrides
Operators
Equality(OrganizationId, OrganizationId)
Get if two OrganizationId represent the same.
Declaration
public static bool operator ==(OrganizationId left, OrganizationId right)
Parameters
Type | Name | Description |
---|---|---|
OrganizationId | left | Compare with this first instance. |
OrganizationId | right | Compare with this other instance. |
Returns
Type | Description |
---|---|
Boolean |
Explicit(OrganizationId to String)
Declaration
public static explicit operator string (OrganizationId sId)
Parameters
Type | Name | Description |
---|---|---|
OrganizationId | sId |
Returns
Type | Description |
---|---|
String |
Inequality(OrganizationId, OrganizationId)
Get if two OrganizationId does not represent the same.
Declaration
public static bool operator !=(OrganizationId left, OrganizationId right)
Parameters
Type | Name | Description |
---|---|---|
OrganizationId | left | Compare with this first instance. |
OrganizationId | right | Compare with this other instance. |
Returns
Type | Description |
---|---|
Boolean | true if both instances are not the same; false if both instances are the same. |