31 references to UTF8Encoding
mscorlib (6)
system\io\binarywriter.cs (2)
63_encoding = new UTF8Encoding(false, true); 67public BinaryWriter(Stream output) : this(output, new UTF8Encoding(false, true), false)
system\io\streamwriter.cs (2)
57public new static readonly StreamWriter Null = new StreamWriter(Stream.Null, new UTF8Encoding(false, true), MinBufferSize, true); 112UTF8Encoding noBOM = new UTF8Encoding(false, true);
system\runtime\serialization\formatters\binary\binaryparser.cs (1)
47private static Encoding encoding = new UTF8Encoding(false, true);
system\text\utf8encoding.cs (1)
77this(encoderShouldEmitUTF8Identifier, false)
System (1)
net\System\Net\HttpListenerRequestUriBuilder.cs (1)
53utf8Encoding = new UTF8Encoding(false, true);
System.AddIn (3)
System\Addin\MiniReflection\MetadataReader\Metadata.cs (1)
40private static readonly UTF8Encoding Encoder = new UTF8Encoding(false, true);
System\Addin\MiniReflection\MetadataReader\PEFileReader.cs (1)
46private static readonly UTF8Encoding Encoder = new UTF8Encoding(false, true);
System\Addin\MiniReflection\TypeInfo.cs (1)
68private readonly static UTF8Encoding s_encoder = new UTF8Encoding(false, true);
System.Data.Services (1)
System\Data\Services\HttpProcessUtility.cs (1)
36internal static readonly UTF8Encoding EncodingUtf8NoPreamble = new UTF8Encoding(false, true);
System.Data.Services.Client (1)
parent\Server\System\Data\Services\HttpProcessUtility.cs (1)
36internal static readonly UTF8Encoding EncodingUtf8NoPreamble = new UTF8Encoding(false, true);
System.Runtime.Remoting (4)
metadata\metadata.cs (4)
74 TextWriter tw = new StreamWriter(outputStream, new UTF8Encoding(false, true)); 87TextWriter tw = new StreamWriter(outputStream, new UTF8Encoding(false, true)); 154StreamWriter fsWriter = new StreamWriter(fs, new UTF8Encoding(false, true)); 268TextWriter tw = new StreamWriter(outputStream, new UTF8Encoding(false, true));
System.Runtime.Serialization (8)
System\Runtime\Serialization\Json\JsonEncodingStreamWrapper.cs (2)
30static readonly UTF8Encoding SafeUTF8 = new UTF8Encoding(false, false); 42static readonly UTF8Encoding ValidatingUTF8 = new UTF8Encoding(false, true);
System\Xml\EncodingStreamWrapper.cs (2)
21static readonly UTF8Encoding SafeUTF8 = new UTF8Encoding(false, false); 24static readonly UTF8Encoding ValidatingUTF8 = new UTF8Encoding(false, true);
System\Xml\ValueHandle.cs (1)
741UTF8Encoding encoding = new UTF8Encoding(false, true);
System\Xml\XmlConverter.cs (1)
50utf8Encoding = new UTF8Encoding(false, true);
System\Xml\XmlExceptionHelper.cs (1)
278return CreateEncodingException(new System.Text.UTF8Encoding(false, false).GetString(buffer, offset, count), exception);
System\Xml\XmlStreamNodeWriter.cs (1)
25static UTF8Encoding UTF8Encoding = new UTF8Encoding(false, true);
System.Security (1)
system\security\cryptography\dataprotector.cs (1)
88using (BinaryWriter stream = new BinaryWriter(new CryptoStream(new MemoryStream(), sha256, CryptoStreamMode.Write), new UTF8Encoding(false, true)))
System.Web (1)
Security\Cryptography\CryptoUtil.cs (1)
22public static readonly UTF8Encoding SecureUTF8Encoding = new UTF8Encoding(encoderShouldEmitUTF8Identifier: false, throwOnInvalidBytes: true);
System.Xml (4)
System\Xml\Core\XmlTextReaderImpl.cs (3)
2928return new UTF8Encoding( true, true ); 3008newEncoding = new UTF8Encoding( true, true ); 3067SwitchEncoding( new UTF8Encoding( true, true ) );
System\Xml\Core\XmlTextReaderImplAsync.cs (1)
977return SwitchEncodingAsync( new UTF8Encoding( true, true ) );
WindowsBase (1)
Base\System\Windows\Markup\XmlCompatibilityReader.cs (1)
745return new System.Text.UTF8Encoding(true, true);