internal PSFileProperties(Microsoft.Azure.Batch.FileProperties omObject)
 {
     if ((omObject == null))
     {
         throw new System.ArgumentNullException("omObject");
     }
     this.omObject = omObject;
 }
예제 #2
0
 internal PSFileProperties(Microsoft.Azure.Batch.FileProperties omObject)
 {
     if ((omObject == null))
     {
         throw new System.ArgumentNullException("omObject");
     }
     this.omObject = omObject;
 }
예제 #3
0
 public FileItemBox(Models.NodeFile file)
 {
     this._boundFileItem = file;
     if (file.Properties != null)
     {
         this._wrappedFileProperties = new FileProperties(file.Properties);
     }
 }