Gets or sets a value that determines whether or not fast JSON serialization is enabled.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.DescriptionAttribute("Gets or sets a value that determines whether or not fast JSON serialization is enabled.")>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<System.ComponentModel.CategoryAttribute("General")>
<ISNet.Serialization.XmlSerializableAttribute()>
<ISNet.Serialization.BinarySerializableAttribute()>
<System.ComponentModel.DefaultValueAttribute()>
Public Property EnableFastJsonSerialization As System.Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As WebScheduler
Dim value As System.Boolean
instance.EnableFastJsonSerialization = value
value = instance.EnableFastJsonSerialization |
C# | |
---|
[System.ComponentModel.DescriptionAttribute("Gets or sets a value that determines whether or not fast JSON serialization is enabled.")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.CategoryAttribute("General")]
[ISNet.Serialization.XmlSerializableAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DefaultValueAttribute()]
public System.bool EnableFastJsonSerialization {get; set;} |
Delphi | |
---|
public read-write property EnableFastJsonSerialization: System.Boolean; |
JScript | |
---|
System.ComponentModel.DescriptionAttribute("Gets or sets a value that determines whether or not fast JSON serialization is enabled.")
System.ComponentModel.NotifyParentPropertyAttribute()
System.ComponentModel.CategoryAttribute("General")
ISNet.Serialization.XmlSerializableAttribute()
ISNet.Serialization.BinarySerializableAttribute()
System.ComponentModel.DefaultValueAttribute()
public function get,set EnableFastJsonSerialization : System.boolean |
Managed Extensions for C++ | |
---|
[System.ComponentModel.DescriptionAttribute("Gets or sets a value that determines whether or not fast JSON serialization is enabled.")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.CategoryAttribute("General")]
[ISNet.Serialization.XmlSerializableAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DefaultValueAttribute()]
public: __property System.bool get_EnableFastJsonSerialization();
public: __property void set_EnableFastJsonSerialization(
System.bool value
); |
C++/CLI | |
---|
[System.ComponentModel.DescriptionAttribute("Gets or sets a value that determines whether or not fast JSON serialization is enabled.")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.CategoryAttribute("General")]
[ISNet.Serialization.XmlSerializableAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DefaultValueAttribute()]
public:
property System.bool EnableFastJsonSerialization {
System.bool get();
void set ( System.bool value);
} |
Property Value
The default value is false.
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also