Show / Hide Table of Contents

Class UserManager

Inheritance
object
UserManager
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Namespace: tt_net_sdk
Assembly: tt-net-api.dll
Syntax
public class UserManager

Properties

Accounts

Declaration
public IReadOnlyCollection<Account> Accounts { get; }
Property Value
Type Description
IReadOnlyCollection<Account>

AssignedMarketIds

Declaration
public IEnumerable<MarketId> AssignedMarketIds { get; }
Property Value
Type Description
IEnumerable<MarketId>

CurrentUser

Declaration
public SDKUser CurrentUser { get; }
Property Value
Type Description
SDKUser

DefaultAccount

Declaration
public Account DefaultAccount { get; }
Property Value
Type Description
Account

IsLoggedIn

Declaration
public bool IsLoggedIn { get; }
Property Value
Type Description
bool

OrderTagDefaults

Declaration
public IReadOnlyCollection<OrderTagDefaults> OrderTagDefaults { get; }
Property Value
Type Description
IReadOnlyCollection<OrderTagDefaults>

Methods

GetAccountByName(string)

Declaration
public Account GetAccountByName(string name)
Parameters
Type Name Description
string name
Returns
Type Description
Account

GetAccountsForMarket(MarketId)

Declaration
public IReadOnlyCollection<Account> GetAccountsForMarket(MarketId key)
Parameters
Type Name Description
MarketId key
Returns
Type Description
IReadOnlyCollection<Account>

GetOrderTagDefaultsByName(string)

Declaration
public OrderTagDefaults GetOrderTagDefaultsByName(string name)
Parameters
Type Name Description
string name
Returns
Type Description
OrderTagDefaults

GetOrderTagDefaultsByNameAndCompany(string, ulong)

Declaration
public OrderTagDefaults GetOrderTagDefaultsByNameAndCompany(string name, ulong companyId)
Parameters
Type Name Description
string name
ulong companyId
Returns
Type Description
OrderTagDefaults
In this article
Back to top