1 instantiation of UTF7Encoding
mscorlib (1)
system\text\encoding.cs (1)
1538if (utf7Encoding == null) utf7Encoding = new UTF7Encoding();
11 references to UTF7Encoding
mscorlib (10)
system\text\utf7encoding.cs (10)
131UTF7Encoding that = value as UTF7Encoding; 526UTF7Encoding.Encoder encoder = (UTF7Encoding.Encoder)baseEncoder; 677UTF7Encoding.Decoder decoder = (UTF7Encoding.Decoder) baseDecoder; 839return new UTF7Encoding.Decoder(this); 845return new UTF7Encoding.Encoder(this); 906public Decoder(UTF7Encoding encoding) : base (encoding) 971public Encoder(UTF7Encoding encoding) : base(encoding)
System.Web (1)
HttpRequest.cs (1)
1326if (_encoding is UTF7Encoding && !AppSettings.AllowUtf7RequestContentEncoding) {