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!

MethodBase.IsPrivate

If set, this method can be called only by other members of the class itself.

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

Property Value

Read-only.

true if access to this method is restricted to other members of the class itself; otherwise, false.

Remarks

If a type member has Private level visibility it can called from any member in the same class and no others.

See Also

MethodBase Class | MethodBase Members | System.Reflection Namespace | Boolean