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

If set, this method can be called by subclasses, wherever they are, and by all classes in the same assembly.

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

Property Value

Read-only. true if access to this method is restricted to members of the class itself, members of subclasses wherever they are, and members of other classes in the same assembly; otherwise, false.

Remarks

If a type member has FamilyOrAssembly level visibility it can be called from any member in a derived class or any member in the same assembly, but not from any other type.

See Also

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