internal PSEnvironmentSetting(Microsoft.Azure.Batch.IEnvironmentSetting omObject)
 {
     if ((omObject == null))
     {
         throw new System.ArgumentNullException("omObject");
     }
     this.omObject = omObject;
 }
Ejemplo n.º 2
0
 internal PSEnvironmentSetting(Microsoft.Azure.Batch.IEnvironmentSetting omObject)
 {
     if ((omObject == null))
     {
         throw new System.ArgumentNullException("omObject");
     }
     this.omObject = omObject;
 }
 public PSEnvironmentSetting(string name, string value)
 {
     this.omObject = new Microsoft.Azure.Batch.EnvironmentSetting(name, value);
 }
Ejemplo n.º 4
0
 public PSEnvironmentSetting(string name, string value)
 {
     this.omObject = new Microsoft.Azure.Batch.EnvironmentSetting(name, value);
 }