SharpCifs.Smb.SmbComSessionSetupAndX.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
		public override string ToString()
		{
			string result = "SmbComSessionSetupAndX[" + base.ToString() + ",snd_buf_size="
				 + Session.transport.SndBufSize + ",maxMpxCount=" + Session.transport.MaxMpxCount
                 + ",VC_NUMBER=" + SmbConstants.VcNumber + ",sessionKey=" + _sessionKey + ",lmHash.length="
				 + (_lmHash == null ? 0 : _lmHash.Length) + ",ntHash.length=" + (_ntHash == null ? 
				0 : _ntHash.Length) + ",capabilities=" + _capabilities + ",accountName=" + _accountName
                 + ",primaryDomain=" + _primaryDomain + ",NATIVE_OS=" + SmbConstants.NativeOs
                 + ",NATIVE_LANMAN=" + SmbConstants.NativeLanman + "]";
			return result;
		}
	}