SharpCifs.Smb.SmbException.SmbException C# (CSharp) Method

SmbException() public method

public SmbException ( int errcode, bool winerr ) : System
errcode int
winerr bool
return System
		public SmbException(int errcode, bool winerr) : base(winerr ? GetMessageByWinerrCode
			(errcode) : GetMessageByCode(errcode))
		{
			_status = winerr ? errcode : GetStatusByCode(errcode);
		}

Same methods

SmbException::SmbException ( ) : System
SmbException::SmbException ( int errcode, Exception rootCause ) : System
SmbException::SmbException ( string msg ) : System
SmbException::SmbException ( string msg, Exception rootCause ) : System