ToString() public method

public ToString ( ) : string
return string
Exemplo n.º 1
0
 /// <summary>
 /// Lists accounts, limited to state
 /// </summary>
 /// <param name="state">Account state to retrieve</param>
 /// <returns></returns>
 public static RecurlyList<Account> List(Account.AccountState state = Account.AccountState.Active)
 {
     return new AccountList(Account.UrlPrefix + "?state=" + state.ToString().EnumNameToTransportCase());
 }