5 overrides of WriteLine
mscorlib (1)
system\io\textwriter.cs (1)
852public override void WriteLine(String format, Object arg0, Object arg1) {
System (1)
compmod\system\codedom\compiler\IndentTextWriter.cs (1)
406public override void WriteLine(string format, object arg0, object arg1) {
System.Web (2)
UI\CssTextWriter.cs (1)
410public override void WriteLine(string format, object arg0, object arg1) {
UI\HTMLTextWriter.cs (1)
583public override void WriteLine(string format, object arg0, object arg1) {
System.Web.Mobile (1)
UI\MobileControls\Adapters\EmptyTextWriter.cs (1)
296public override void WriteLine(String format, Object arg0, Object arg1)
11 references to WriteLine
mscorlib (3)
system\console.cs (2)
2099Out.WriteLine(format, arg0, arg1); 2144Out.WriteLine(format, null, null); // faster than Out.WriteLine(format, (Object)arg);
system\io\textwriter.cs (1)
853_out.WriteLine(format, arg0, arg1);
System (1)
compmod\system\codedom\compiler\IndentTextWriter.cs (1)
408writer.WriteLine(format, arg0, arg1);
System.Configuration (1)
System\Configuration\ConfigurationElement.cs (1)
977tw.WriteLine("{0}: {1}", pi.Name, pi.GetValue(this, null));
System.Data.Services (1)
System\Data\Services\Serializers\BatchWriter.cs (1)
114writer.WriteLine("{0}: {1}", headerName, text);
System.Data.Services.Client (1)
System\Data\Services\Client\DataServiceContext.cs (1)
4995this.buildBatchWriter.WriteLine("{0}: {1}", name, response.Headers[name]);
System.IdentityModel (2)
System\IdentityModel\Tokens\GenericXmlSecurityToken.cs (1)
118writer.WriteLine(" Token Element: ({0}, {1})", this.tokenXml.LocalName, this.tokenXml.NamespaceURI);
System\IdentityModel\Tokens\SecurityKeyIdentifier.cs (1)
118writer.WriteLine(" Count = {0}{1}", this.Count, this.Count > 0 ? "," : "");
System.Web (2)
UI\CssTextWriter.cs (1)
411_writer.WriteLine(format, arg0, arg1);
UI\HTMLTextWriter.cs (1)
587writer.WriteLine(format, arg0, arg1);