MailKit.ProtocolLogger.ProtocolLogger C# (CSharp) 메소드

ProtocolLogger() 공개 메소드

Initializes a new instance of the MailKit.ProtocolLogger class.
Creates a new ProtocolLogger to log to a specified stream.
public ProtocolLogger ( Stream stream ) : System
stream Stream The stream.
리턴 System
		public ProtocolLogger (Stream stream)
		{
			if (stream == null)
				throw new ArgumentNullException (nameof (stream));

			this.stream = stream;
		}

Same methods

ProtocolLogger::ProtocolLogger ( string fileName ) : System