50 references to UTF8Encoding
mscorlib (6)
system\security\cryptography\passwordderivebytes.cs (1)
75this ((new UTF8Encoding(false)).GetBytes(strPassword), rgbSalt, strHashName, iterations, cspParams) {}
system\security\cryptography\rfc2898derivebytes.cs (2)
75m_password = new UTF8Encoding(false).GetBytes(password); 89: this(new UTF8Encoding(false).GetBytes(password), salt, iterations, hashAlgorithm) {
system\text\encoding.cs (1)
1549if (utf8Encoding == null) utf8Encoding = new UTF8Encoding(true);
system\text\utf8encoding.cs (2)
61public UTF8EncodingSealed(bool encoderShouldEmitUTF8Identifier) : base(encoderShouldEmitUTF8Identifier) { } 71public UTF8Encoding(): this(false)
PresentationBuildTasks (11)
BuildTasks\Microsoft\Build\Tasks\Windows\MarkupCompilePass2.cs (1)
699using (StreamWriter writer = new StreamWriter(memStream, new UTF8Encoding(false)))
BuildTasks\Microsoft\Build\Tasks\Windows\MergeLocalizationDirectives.cs (1)
70new UTF8Encoding(true)
BuildTasks\Microsoft\Build\Tasks\Windows\UidManager.cs (1)
957UTF8Encoding encoding = new UTF8Encoding(true);
BuildTasks\MS\Internal\Localization\LocalizationParserHooks.cs (1)
116using (XmlTextWriter writer = new XmlTextWriter(memStream, new UTF8Encoding(false)))
BuildTasks\Ms\Internal\MarkupCompiler\MarkupCompiler.cs (3)
623using (StreamWriter codeStreamWriter = new StreamWriter(codeMemStream, new UTF8Encoding(false))) 2877using (StreamWriter codeStreamWriter = new StreamWriter(codeMemStream, new UTF8Encoding(false))) 3183using (StreamWriter codeStreamWriter = new StreamWriter(codeMemStream, new UTF8Encoding(false)))
BuildTasks\MS\Internal\Tasks\CompilerLocalReference.cs (1)
203using (StreamWriter sw = new StreamWriter(memStream, new UTF8Encoding(false)))
BuildTasks\MS\Internal\Tasks\CompilerState.cs (1)
138using (StreamWriter sw = new StreamWriter(memStream, new UTF8Encoding(false)))
BuildTasks\MS\Internal\Tasks\TaskFileService.cs (2)
315using (StreamWriter sw = new StreamWriter(destinationFile, false, new UTF8Encoding(true))) 356using (StreamWriter sw = new StreamWriter(destinationFile, false, new UTF8Encoding(true)))
System (1)
compmod\system\diagnostics\TextWriterTraceListener.cs (1)
206Encoding noBOMwithFallback = GetEncodingWithFallback(new UTF8Encoding(false));
System.Core (1)
System\Diagnostics\EventSchemaTraceListener.cs (1)
722encNoBOMwithFallback = GetEncodingWithFallback(new UTF8Encoding(false));
System.IdentityModel (1)
System\IdentityModel\CanonicalFormWriter.cs (1)
14internal static readonly UTF8Encoding Utf8WithoutPreamble = new UTF8Encoding(false);
System.Runtime.Remoting (3)
channels\http\httpremotinghandler.cs (1)
302StreamWriter writer = new StreamWriter(outputStream, new UTF8Encoding(false));
channels\http\httpstreams.cs (1)
562StreamWriter writer = new StreamWriter(outputStream, new UTF8Encoding(false));
metadata\wsdlparser.cs (1)
3275TextWriter textWriter = new StreamWriter(_completeFileName, false, new UTF8Encoding(false));
System.Security (11)
system\security\cryptography\xml\c14nutil.cs (8)
240UTF8Encoding utf8 = new UTF8Encoding(false); 320UTF8Encoding utf8 = new UTF8Encoding(false); 351UTF8Encoding utf8 = new UTF8Encoding(false); 379UTF8Encoding utf8 = new UTF8Encoding(false); 407UTF8Encoding utf8 = new UTF8Encoding(false); 451UTF8Encoding utf8 = new UTF8Encoding(false); 503UTF8Encoding utf8 = new UTF8Encoding(false); 572UTF8Encoding utf8 = new UTF8Encoding(false);
system\security\cryptography\xml\canonicalxml.cs (1)
106UTF8Encoding utf8 = new UTF8Encoding(false);
system\security\cryptography\xml\exccanonicalxml.cs (1)
62UTF8Encoding utf8 = new UTF8Encoding(false);
system\security\cryptography\xml\transform.cs (1)
630UTF8Encoding utf8 = new UTF8Encoding(false);
System.ServiceModel.Web (1)
System\ServiceModel\Channels\WebScriptMetadataMessageEncoderFactory.cs (1)
36static UTF8Encoding UTF8EncodingWithoutByteOrderMark = new UTF8Encoding(false);
System.Web.Extensions (1)
Script\Services\RestHandler.cs (1)
231using (StreamWriter writer = new StreamWriter(context.Response.OutputStream, new UTF8Encoding(false))) {
System.Web.Services (14)
System\Web\Services\Discovery\ContractReference.cs (1)
170((ServiceDescription) document).Write(new StreamWriter(stream, new UTF8Encoding(false)));
System\Web\Services\Discovery\DiscoveryClientProtocol.cs (1)
512ser.Serialize(new StreamWriter(topLevelFile, new UTF8Encoding(false)), results);
System\Web\Services\Discovery\DiscoveryDocument.cs (1)
109TextWriter writer = new StreamWriter(stream, new UTF8Encoding(false));
System\Web\Services\Discovery\DiscoveryDocumentReference.cs (1)
103WebServicesSection.Current.DiscoveryDocumentSerializer.Serialize(new StreamWriter(stream, new UTF8Encoding(false)), document);
System\Web\Services\Discovery\DiscoveryRequestHandler.cs (1)
103StreamWriter writer = new StreamWriter(memStream, new UTF8Encoding(false));
System\Web\Services\Discovery\DynamicDiscoveryDocument.cs (1)
57xmlSerializer.Serialize(new StreamWriter(stream, new UTF8Encoding(false)), this);
System\Web\Services\Discovery\SchemaReference.cs (1)
131((XmlSchema)document).Write(new StreamWriter(stream, new UTF8Encoding(false)));
System\Web\Services\Protocols\DiscoveryServerProtocol.cs (2)
269Encoding encoding = new UTF8Encoding(false); 344StreamWriter writer = new StreamWriter(outputStream, new UTF8Encoding(false));
System\Web\Services\Protocols\HttpServerProtocol.cs (1)
225StreamWriter writer = new StreamWriter(outputStream, new UTF8Encoding(false));
System\Web\Services\Protocols\SoapClientProtocol.cs (1)
240XmlTextWriter writer = new XmlTextWriter(new StreamWriter(message.Stream, RequestEncoding != null ? RequestEncoding : new UTF8Encoding(false), bufferSize));
System\Web\Services\Protocols\SoapServerProtocol.cs (2)
254return new XmlTextWriter(new StreamWriter(message.Stream, new UTF8Encoding(false), bufferSize)); 815StreamWriter sw = new StreamWriter(outputStream, new UTF8Encoding(false));
System\Web\Services\Protocols\XmlReturnWriter.cs (1)
33Encoding encoding = new UTF8Encoding(false);