1 write to MediaType
System (1)
net\System\Net\mail\MimeMultiPart.cs (1)
32ContentType.MediaType = "multipart" + "/" + type.ToString().ToLower(CultureInfo.InvariantCulture);
10 references to MediaType
System (1)
net\System\Net\mail\MailMessage.cs (1)
345wholeView.ContentType.Parameters["type"] = view.ContentType.MediaType;
System.ServiceModel (3)
System\ServiceModel\Channels\HttpChannelHelpers.cs (1)
311if (parsedContentType.MediaType == multipartRelatedMediaType && parsedContentType.Parameters.ContainsKey(startInfoHeaderParam))
System\ServiceModel\Channels\MessageEncoder.cs (1)
185if (supportedMediaType.Length > 0 && !supportedMediaType.Equals(parsedContentType.MediaType, StringComparison.OrdinalIgnoreCase))
System\ServiceModel\Description\MetadataExchangeClient.cs (1)
1343return string.Compare(contentType == null ? string.Empty : contentType.MediaType,
System.ServiceModel.Web (6)
System\ServiceModel\Dispatcher\FormatSelectingMessageInspector.cs (1)
123string[] typeAndSubType = acceptHeaderElements[i].MediaType.Split('/');
System\ServiceModel\Dispatcher\MultiplexingFormatMapping.cs (2)
56contentType = new ContentType(acceptHeaderElement.MediaType); 68this.contentTypeMapper.GetMessageFormatForContentType(contentType.MediaType) == this.ContentFormat)
System\ServiceModel\Web\IncomingWebRequestContext.cs (2)
369string[] xTypeSubType = x.MediaType.Split('/'); 370string[] yTypeSubType = y.MediaType.Split('/');
System\ServiceModel\Web\Utility.cs (1)
173string[] typeAndSubType = contentTypeToReturn.MediaType.Split('/');