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