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.IsFamily

If set, this method can be called by all subclasses, wherever they are, but not by unrelated classes.

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

Property Value

Read-only.

true if access to the class is restricted to members of the class itself and to members of its subclasses; otherwise, false.

Remarks

If a type member has Family level visibility it can be called from any member in a derived class, but not from any other type.

See Also

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