Noemax FastInfoset.NET
GuidFormat Property
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetWriterProfile Class : GuidFormat Property






Gets and sets the format used to serialize guild values.

Syntax

Visual Basic (Declaration) 
Public Property GuidFormat As XmlFastInfosetFormat
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetWriterProfile
Dim value As XmlFastInfosetFormat
 
instance.GuidFormat = value
 
value = instance.GuidFormat
C# 
public XmlFastInfosetFormat GuidFormat {get; set;}
Delphi 
public read-write property GuidFormat: XmlFastInfosetFormat; 
JScript 
public function get,set GuidFormat : XmlFastInfosetFormat
Managed Extensions for C++ 
public: __property XmlFastInfosetFormat get_GuidFormat();
public: __property void set_GuidFormat( 
   XmlFastInfosetFormat value
);
C++/CLI 
public:
property XmlFastInfosetFormat GuidFormat {
   XmlFastInfosetFormat get();
   void set (    XmlFastInfosetFormat value);
}

Remarks

Values of this data type can be encoded using any of the following representations:

- Binary
- Literal
- LiteralNoIndex

When values are indexed, they are added to the Fast Infoset vocabulary in order to reduce redundancy and increase compactness. If there are few repeating values of the same data type then it might be preferable not to use indexing.

See Also