5 overrides of WriteLine
mscorlib (1)
system\io\textwriter.cs (1)
847public override void WriteLine(String format, Object arg0) {
System (1)
compmod\system\codedom\compiler\IndentTextWriter.cs (1)
397public override void WriteLine(string format, object arg0) {
System.Web (2)
UI\CssTextWriter.cs (1)
404public override void WriteLine(string format, object arg0) {
UI\HTMLTextWriter.cs (1)
575public override void WriteLine(string format, object arg0) {
System.Web.Mobile (1)
UI\MobileControls\Adapters\EmptyTextWriter.cs (1)
285public override void WriteLine(String format, Object arg0)
30 references to WriteLine
mscorlib (2)
system\console.cs (1)
2092Out.WriteLine(format, arg0);
system\io\textwriter.cs (1)
848_out.WriteLine(format, arg0);
System (1)
compmod\system\codedom\compiler\IndentTextWriter.cs (1)
399writer.WriteLine(format, arg0);
System.Data.Services (2)
System\Data\Services\Serializers\BatchWriter.cs (2)
88writer.WriteLine("--{0}--", boundary); 98writer.WriteLine("--{0}", boundary);
System.Data.Services.Client (9)
System\Data\Services\Client\DataServiceContext.cs (9)
4452this.buildBatchWriter.WriteLine("--{0}--", this.batchBoundary); 4864this.buildBatchWriter.WriteLine("--{0}", this.batchBoundary); 4867this.buildBatchWriter.WriteLine("--{0}", this.changesetBoundary); 4878this.buildBatchWriter.WriteLine("--{0}--", this.changesetBoundary); 5093text.WriteLine("--{0}", this.batchBoundary); 5100text.WriteLine("--{0}", this.batchBoundary); 5124text.WriteLine("--{0}", this.changesetBoundary); 5204text.WriteLine("--{0}--", this.changesetBoundary); 5207text.WriteLine("--{0}--", this.batchBoundary);
System.IdentityModel (5)
System\IdentityModel\Tokens\GenericXmlSecurityToken.cs (4)
112writer.WriteLine(" validFrom: {0}", this.ValidFrom); 113writer.WriteLine(" validTo: {0}", this.ValidTo); 115writer.WriteLine(" InternalTokenReference: {0}", this.internalTokenReference); 117writer.WriteLine(" ExternalTokenReference: {0}", this.externalTokenReference);
System\IdentityModel\Tokens\SecurityKeyIdentifier.cs (1)
117writer.WriteLine(" IsReadOnly = {0},", this.IsReadOnly);
System.Management (1)
Instrumentation\ManagementInstaller.cs (1)
157log.WriteLine("//* {0}", mofFile);
System.ServiceModel (8)
System\ServiceModel\Security\InMemoryNonceCache.cs (2)
43writer.WriteLine(" Caching Timespan: {0}", this.CachingTimeSpan); 44writer.WriteLine(" Capacity: {0}", this.CacheSize);
System\ServiceModel\Security\SecurityHeaderTokenResolver.cs (1)
253writer.WriteLine(" TokenCount = {0},", this.tokenCount);
System\ServiceModel\Security\Tokens\DerivedKeySecurityToken.cs (5)
176writer.WriteLine(" Generation: {0}", this.Generation); 177writer.WriteLine(" Offset: {0}", this.Offset); 178writer.WriteLine(" Length: {0}", this.Length); 179writer.WriteLine(" Label: {0}", this.Label); 180writer.WriteLine(" Nonce: {0}", Convert.ToBase64String(this.Nonce));
System.Web (2)
UI\CssTextWriter.cs (1)
405_writer.WriteLine(format, arg0);
UI\HTMLTextWriter.cs (1)
579writer.WriteLine(format, arg0);