Show / Hide Table of Contents

Struct AccountKey

Implements
IEquatable<AccountKey>
Inherited Members
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetType()
Namespace: tt_net_sdk
Assembly: tt-net-api.dll
Syntax
public struct AccountKey : IEquatable<AccountKey>

Constructors

AccountKey(ulong, string)

Declaration
public AccountKey(ulong id, string name)
Parameters
Type Name Description
ulong id
string name

Fields

Empty

Declaration
public static readonly AccountKey Empty
Field Value
Type Description
AccountKey

Properties

Id

Declaration
public ulong Id { get; }
Property Value
Type Description
ulong

Name

Declaration
public string Name { get; }
Property Value
Type Description
string

Methods

Equals(object)

Declaration
public override bool Equals(object obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
ValueType.Equals(object)

Equals(AccountKey)

Declaration
public bool Equals(AccountKey other)
Parameters
Type Name Description
AccountKey other
Returns
Type Description
bool

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
ValueType.GetHashCode()

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
ValueType.ToString()

Operators

operator ==(AccountKey, AccountKey)

Declaration
public static bool operator ==(AccountKey left, AccountKey right)
Parameters
Type Name Description
AccountKey left
AccountKey right
Returns
Type Description
bool

operator !=(AccountKey, AccountKey)

Declaration
public static bool operator !=(AccountKey left, AccountKey right)
Parameters
Type Name Description
AccountKey left
AccountKey right
Returns
Type Description
bool

Implements

IEquatable<T>
In this article
Back to top