Esempio n. 1
0
 /// <summary>
 /// Creates a new PortCallClient instance.
 /// </summary>
 /// <param name="serverAddress">The server address.</param>
 /// <param name="authorization">The API token.</param>
 /// <remarks>
 /// The key BlueCloud_ApiKey is used to specify the API token, the key BlueCloud_ServerAddress is used to set the
 /// service address. If the service address is not specified as constructor parameter,
 /// the default service address will be used.
 /// </remarks>
 public PortCallClient(string serverAddress, string authorization)
 {
     _portCallWrapper = new PortCallWrapper(serverAddress, authorization);
 }
Esempio n. 2
0
 /// <summary>
 /// Creates a new PortCallClient instance.
 /// </summary>
 /// <param name="authorization">The API token.</param>
 /// <remarks>
 /// The key BlueCloud_ApiKey is used to specify the API token.
 /// </remarks>
 public PortCallClient(string authorization)
 {
     _portCallWrapper = new PortCallWrapper(authorization);
 }