Example #1
0
 internal PSCloudTask(Microsoft.Azure.Batch.CloudTask omObject)
 {
     if ((omObject == null))
     {
         throw new System.ArgumentNullException("omObject");
     }
     this.omObject = omObject;
 }
Example #2
0
 public PSCloudTask(string id, string commandline)
 {
     this.omObject = new Microsoft.Azure.Batch.CloudTask(id, commandline);
 }