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