Ejemplo n.º 1
0
 public UANodeSetCloudLibraryResolver(string strEndPoint, string strUserName, string strPassword)
 {
     if (string.IsNullOrEmpty(strEndPoint))
     {
         _client = new UACloudLibClient(strUserName, strPassword);
     }
     else
     {
         _client = new UACloudLibClient(strEndPoint, strUserName, strPassword);
     }
 }
Ejemplo n.º 2
0
 public UANodeSetCloudLibraryResolver(UACloudLibClient client)
 {
     _client = client;
 }
Ejemplo n.º 3
0
 public UANodeSetCloudLibraryResolver(string strUserName, string strPassword)
 {
     _client = new UACloudLibClient(strUserName, strPassword);
 }