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!

CodeMemberProperty.HasSet

Gets whether the property has a set method accessor.

[Visual Basic]
Public Property HasSet As Boolean
[C#]
public bool HasSet {get; set;}
[C++]
public: __property bool get_HasSet();
public: __property void set_HasSet(bool);
[JScript]
public function get HasSet() : Boolean;
public function set HasSet(Boolean);

Property Value

true if the property has a set method accessor; otherwise, false.

Remarks

This will should return false if the property is read-only.

See Also

CodeMemberProperty Class | CodeMemberProperty Members | System.CodeDOM Namespace | HasGet