18 references to MailBnfHelper
System.Runtime.Serialization (18)
System\Xml\XmlMtomReader.cs (17)
160if (!MailBnfHelper.IsValidMimeBoundary(boundary)) 2375this.mediaType = MailBnfHelper.ReadToken(Value, ref offset, null); 2378this.subType = MailBnfHelper.ReadToken(Value, ref offset, null); 2380while (MailBnfHelper.SkipCFWS(Value, ref offset)) 2385if (!MailBnfHelper.SkipCFWS(Value, ref offset)) 2388string paramAttribute = MailBnfHelper.ReadParameterAttribute(Value, ref offset, null); 2391string paramValue = MailBnfHelper.ReadParameterValue(Value, ref offset, null); 2407while (MailBnfHelper.SkipCFWS(startInfo, ref startInfoOffset)) 2418string paramAttribute = MailBnfHelper.ReadParameterAttribute(startInfo, ref startInfoOffset, null); 2421string paramValue = MailBnfHelper.ReadParameterValue(startInfo, ref startInfoOffset, null); 2488this.contentTransferEncodingValue = (Value.Length == 0) ? Value : ((Value[0] == '"') ? MailBnfHelper.ReadQuotedString(Value, ref offset, null) : MailBnfHelper.ReadToken(Value, ref offset, null)); 2548if (!MailBnfHelper.SkipCFWS(Value, ref offset)) 2552MailBnfHelper.ReadDigits(Value, ref offset, builder); 2554if ((!MailBnfHelper.SkipCFWS(Value, ref offset) || offset >= Value.Length || Value[offset++] != '.') || !MailBnfHelper.SkipCFWS(Value, ref offset)) 2559MailBnfHelper.ReadDigits(Value, ref offset, builder);
System\Xml\XmlMtomWriter.cs (1)
91if (!MailBnfHelper.IsValidMimeBoundary(boundary))