MimeKit.ParserOptions.ParserOptions C# (CSharp) Méthode

ParserOptions() public méthode

Initializes a new instance of the MimeKit.ParserOptions class.
By default, new instances of ParserOptions enable rfc2047 work-arounds (which are needed for maximum interoperability with mail software used in the wild) and do not respect the Content-Length header value.
public ParserOptions ( ) : System
Résultat System
		public ParserOptions ()
		{
			AddressParserComplianceMode = RfcComplianceMode.Loose;
			ParameterComplianceMode = RfcComplianceMode.Loose;
			Rfc2047ComplianceMode = RfcComplianceMode.Loose;
			CharsetEncoding = CharsetUtils.UTF8;
			RespectContentLength = false;
		}