System\Xml\XmlMtomReader.cs (34)
249header.Value,
262header.Value, ContentTransferEncodingHeader.Binary.ContentTransferEncodingValue)));
383if (contentIDHeader == null || contentIDHeader.Value == null)
398string currentContentID = headers.ContentID.Value;
2282remaining += header.Value.Length * sizeof(char);
2336if (this.mediaType == null && Value != null)
2347if (this.subType == null && Value != null)
2360if (Value != null)
2375this.mediaType = MailBnfHelper.ReadToken(Value, ref offset, null);
2376if (offset >= Value.Length || Value[offset++] != '/')
2378this.subType = MailBnfHelper.ReadToken(Value, ref offset, null);
2380while (MailBnfHelper.SkipCFWS(Value, ref offset))
2382if (offset >= Value.Length || Value[offset++] != ';')
2385if (!MailBnfHelper.SkipCFWS(Value, ref offset))
2388string paramAttribute = MailBnfHelper.ReadParameterAttribute(Value, ref offset, null);
2389if (paramAttribute == null || offset >= Value.Length || Value[offset++] != '=')
2391string paramValue = MailBnfHelper.ReadParameterValue(Value, ref offset, null);
2488this.contentTransferEncodingValue = (Value.Length == 0) ? Value : ((Value[0] == '"') ? MailBnfHelper.ReadQuotedString(Value, ref offset, null) : MailBnfHelper.ReadToken(Value, ref offset, null));
2531if (this.version == null && Value != null)
2540if (Value == "1.0")
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);