Exemplo n.º 1
0
 internal SMB2File(SMB2Worker smb2Client, SMB2Tree tree, string strfileName, Guid fileId, ulong length)
 {
     SMB2Worker = smb2Client;
     Tree       = tree;
     fileName   = strfileName;
     FileId     = fileId;
     Length     = length;
 }
Exemplo n.º 2
0
 internal SMB2Tree(SMB2Worker smb2Client, string strShareName, uint treeId)
 {
     SMB2Client = smb2Client;
     ShareName  = strShareName;
     TreeId     = treeId;
 }
Exemplo n.º 3
0
 public SMB2Client(string strIpAddress, string strUserName, string strPassword)
 {
     UserName   = strUserName;
     Password   = strPassword;
     SMB2Worker = new SMB2Worker(strIpAddress, 445);
 }