示例#1
0
 internal PSMultiInstanceSettings(Microsoft.Azure.Batch.MultiInstanceSettings omObject)
 {
     if ((omObject == null))
     {
         throw new System.ArgumentNullException("omObject");
     }
     this.omObject = omObject;
 }
 internal PSMultiInstanceSettings(Microsoft.Azure.Batch.MultiInstanceSettings omObject)
 {
     if ((omObject == null))
     {
         throw new System.ArgumentNullException("omObject");
     }
     this.omObject = omObject;
 }
示例#3
0
 public PSMultiInstanceSettings(int numberOfInstances)
 {
     this.omObject = new Microsoft.Azure.Batch.MultiInstanceSettings(numberOfInstances);
 }
 public PSMultiInstanceSettings(string coordinationCommandLine, System.Nullable <int> numberOfInstances = null)
 {
     this.omObject = new Microsoft.Azure.Batch.MultiInstanceSettings(coordinationCommandLine, numberOfInstances);
 }
 public PSMultiInstanceSettings(int numberOfInstances)
 {
     this.omObject = new Microsoft.Azure.Batch.MultiInstanceSettings(numberOfInstances);
 }