CodeGeneratorContext.TargetWriterName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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").