Share via


CodeGeneratorContext.TargetWriterName Property

Definition

The C# writer to write Chunk information to.

public:
 property System::String ^ TargetWriterName { System::String ^ get(); void set(System::String ^ value); };
public string TargetWriterName { get; set; }
member this.TargetWriterName : string with get, set
Public Property TargetWriterName As String

Property Value

Remarks

If TargetWriterName is null values will be written using a default write method i.e. WriteLiteral("Hello World"). If TargetWriterName is not null values will be written to the given TargetWriterName, i.e. WriteLiteralTo(myWriter, "Hello World").

Applies to