NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

FieldInfo.IsNotSerialized

Indicates whether this field has the NotSerialized attribute.

[Visual Basic]
Public ReadOnly Property IsNotSerialized As Boolean
[C#]
public bool IsNotSerialized {get;}
[C++]
public: __property bool get_IsNotSerialized();
[JScript]
public function get IsNotSerialized() : Boolean;

Property Value

Read-only. true if the field has the NotSerialized attribute set; otherwise, false.

Remarks

The IsNotSerialized property is set when the FieldAttributes.NotSerialized attribute is set. The presence of the NonSerialized attribute on a field or property indicates that that field or property should not be serialized.

See Also

FieldInfo Class | FieldInfo Members | System.Reflection Namespace | FieldAttributes