Writes a vCard to an I/O stream using the format
implemented by the class.
Namespace: vCardsAssembly: ICalVCard (in ICalVCard.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C# |
---|
public abstract void Write( vCard card, TextWriter output, string charsetName ) |
Visual Basic |
---|
Public MustOverride Sub Write ( _ card As vCard, _ output As TextWriter, _ charsetName As String _ ) |
Visual C++ |
---|
public: virtual void Write( vCard^ card, TextWriter^ output, String^ charsetName ) abstract |
Parameters
- card
- Type: vCards..::..vCard
The vCard to write the I/O string.
- output
- Type: System.IO..::..TextWriter
The text writer to use for output.
- charsetName
- Type: System..::..String
Remarks
The implementor should not close or flush the stream.
The caller owns the stream and may not wish for the
stream to be closed (e.g. the caller may call the
function again with a different vCard).