Esempio n. 1
0
 internal PSUserIdentity(Microsoft.Azure.Batch.UserIdentity omObject)
 {
     if ((omObject == null))
     {
         throw new System.ArgumentNullException("omObject");
     }
     this.omObject = omObject;
 }
Esempio n. 2
0
 public PSUserIdentity(PSAutoUserSpecification autoUserSpecification)
 {
     this.omObject = new Microsoft.Azure.Batch.UserIdentity(autoUserSpecification.omObject);
 }
Esempio n. 3
0
 public PSUserIdentity(string userName)
 {
     this.omObject = new Microsoft.Azure.Batch.UserIdentity(userName);
 }