Esempio n. 1
0
 public StreamProvider(StreamProvider other)
 {
     parent                 = other.parent;
     contextNode            = other.contextNode;
     fullName               = other.fullName;
     virtualName            = other.virtualName;
     virtualRoot            = other.virtualRoot;
     relativeName           = other.relativeName;
     uri                    = other.uri;
     credentialCache        = other.credentialCache;
     protocol               = other.protocol;
     lastModUtc             = other.lastModUtc;
     attributes             = other.attributes;
     size                   = other.size;
     credentialsNeeded      = other.credentialsNeeded;
     credentialsInitialized = other.credentialsInitialized;
     silent                 = other.silent;
     isDir                  = other.isDir;
 }
Esempio n. 2
0
 public SSHStreamProvider(PipelineContext ctx, StreamProvider other, String url)
     : base(other)
 {
     uri      = new Uri(url);
     fullName = uri.ToString();
 }