3 writes to CharSet
System (1)
net\System\Net\mail\Attachment.cs (1)
184contentType.CharSet = encoding.BodyName;
System.ServiceModel.Web (2)
System\ServiceModel\Dispatcher\MultiplexingFormatMapping.cs (2)
30defaultContentType = new ContentType(this.DefaultMediaType) { CharSet = this.writeCharset }; 57contentType.CharSet = this.DefaultContentType.CharSet;
11 references to CharSet
System (2)
net\System\Net\mail\Attachment.cs (2)
121if (contentType != null && contentType.CharSet != null) { 122encoding = Text.Encoding.GetEncoding(contentType.CharSet);
System.ServiceModel (4)
System\ServiceModel\Channels\MessageEncoder.cs (1)
188if (!IsCharSetSupported(parsedContentType.CharSet))
System\ServiceModel\Channels\TextMessageEncoder.cs (2)
204Fx.Assert(charSet == (new ContentType(contentType)).CharSet, 217charSet = parsedContentType.CharSet;
System\ServiceModel\Description\MetadataExchangeClient.cs (1)
1322string charset = contentType == null ? string.Empty : contentType.CharSet;
System.ServiceModel.Web (5)
System\ServiceModel\Dispatcher\MultiplexingFormatMapping.cs (5)
55string charset = acceptHeaderElement.CharSet; 57contentType.CharSet = this.DefaultContentType.CharSet; 62!string.Equals(charset, this.DefaultContentType.CharSet, StringComparison.OrdinalIgnoreCase)) 74(charset == null || contentType.CharSet == this.DefaultContentType.CharSet))