TnefWriter.WritePropertyValue method
The WritePropertyValue method overloads write properties to the TNEF stream that this TnefWriter object owns.
Overload list
Name | Description | |
---|---|---|
WritePropertyValue(Boolean) | The WritePropertyValue method writes a Boolean property value to the stream that this TnefWriter object owns. | |
WritePropertyValue([]) | The WritePropertyValue method writes the value contained in the value parameter and then ends it. | |
WritePropertyValue(DateTime) | The WritePropertyValue method writes a DateTime value and then ends it. | |
WritePropertyValue(Double) | The WritePropertyValue method writes a double precision floating point value and then ends it. | |
WritePropertyValue(Guid) | The WritePropertyValue method writes a GUID value and then ends it. | |
WritePropertyValue(Int16) | The WritePropertyValue method writes a short integer value and then ends it. | |
WritePropertyValue(Int32) | The WritePropertyValue method writes an integer property value and then ends it. | |
WritePropertyValue(Int64) | The WritePropertyValue method writes a long integer property value and then ends it. | |
WritePropertyValue(Stream) | The WritePropertyValue method reads bytes from the stream parameter, writes them to the output stream that this TnefWriter object owns, and ends the property value. | |
WritePropertyValue(TextReader) | The WritePropertyValue method reads text from the reader parameter, writes it to the TNEF stream that this TnefWriter object owns, and then ends the property value. | |
WritePropertyValue(Object) | The WritePropertyValue method writes and object as a property value and then ends it. | |
WritePropertyValue(Single) | The WritePropertyValue method writes a single precision floating point value as a property value and then ends it. | |
WritePropertyValue(String) | The WritePropertyValue method writes a string to a property value and then ends it. | |
WritePropertyValue(Guid, Stream) | The WritePropertyValue method writes an object property value and ends it. |
Top