Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the NodeFile class.
 /// </summary>
 /// <param name="name">The file path.</param>
 /// <param name="url">The URL of the file.</param>
 /// <param name="isDirectory">Whether the object represents a
 /// directory.</param>
 /// <param name="properties">The file properties.</param>
 public NodeFile(string name = default(string), string url = default(string), bool?isDirectory = default(bool?), FileProperties properties = default(FileProperties))
 {
     Name        = name;
     Url         = url;
     IsDirectory = isDirectory;
     Properties  = properties;
     CustomInit();
 }
Ejemplo n.º 2
0
 internal FileProperties(Models.FileProperties protocolObject)
 {
     this.contentLength = protocolObject.ContentLength;
     this.contentType   = protocolObject.ContentType;
     this.creationTime  = protocolObject.CreationTime;
     this.fileMode      = protocolObject.FileMode;
     this.lastModified  = protocolObject.LastModified;
 }