18 references to MailBnfHelper
System.ServiceModel.Primitives (18)
Internals\System\Xml\XmlMtomReader.cs (17)
210if (!MailBnfHelper.IsValidMimeBoundary(boundary)) 2418mediaType = MailBnfHelper.ReadToken(Value, ref offset, null); 2421subType = MailBnfHelper.ReadToken(Value, ref offset, null); 2423while (MailBnfHelper.SkipCFWS(Value, ref offset)) 2428if (!MailBnfHelper.SkipCFWS(Value, ref offset)) 2431string paramAttribute = MailBnfHelper.ReadParameterAttribute(Value, ref offset, null); 2434string paramValue = MailBnfHelper.ReadParameterValue(Value, ref offset, null); 2450while (MailBnfHelper.SkipCFWS(startInfo, ref startInfoOffset)) 2461string paramAttribute = MailBnfHelper.ReadParameterAttribute(startInfo, ref startInfoOffset, null); 2464string paramValue = MailBnfHelper.ReadParameterValue(startInfo, ref startInfoOffset, null); 2531contentTransferEncodingValue = (Value.Length == 0) ? Value : ((Value[0] == '"') ? MailBnfHelper.ReadQuotedString(Value, ref offset, null) : MailBnfHelper.ReadToken(Value, ref offset, null)); 2591if (!MailBnfHelper.SkipCFWS(Value, ref offset)) 2595MailBnfHelper.ReadDigits(Value, ref offset, builder); 2597if ((!MailBnfHelper.SkipCFWS(Value, ref offset) || offset >= Value.Length || Value[offset++] != '.') || !MailBnfHelper.SkipCFWS(Value, ref offset)) 2602MailBnfHelper.ReadDigits(Value, ref offset, builder);
Internals\System\Xml\XmlMtomWriter.cs (1)
105if (!MailBnfHelper.IsValidMimeBoundary(boundary))