Noemax FastInfoset.NET
WriteGuid Method
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetWriter Class : WriteGuid Method






value
Guid value to write.
Writes GUID value.

Syntax

Visual Basic (Declaration) 
Public Sub WriteGuid( _
   ByVal value As Guid _
) 
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetWriter
Dim value As Guid
 
instance.WriteGuid(value)
C# 
public void WriteGuid( 
   Guid value
)
Delphi 
public procedure WriteGuid( 
    value: Guid
); 
JScript 
public function WriteGuid( 
   value : Guid
);
Managed Extensions for C++ 
public: void WriteGuid( 
   Guid value
) 
C++/CLI 
public:
void WriteGuid( 
   Guid value
) 

Parameters

value
Guid value to write.

Remarks

If WriteValue is called multiple times in succession, values are written one next to the other without being delimited by white space. To write a list of values, call the WriteValue(Object) method using an array of values as parameter.

Values are encoded according to the Profile settings.

See Also