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!

Type.IsNestedFamORAssem

Gets a value indicating whether the Type is nested and visible only to classes that belong to its own family or to its own assembly.

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

Property Value

true if the Type is nested and visible only to classes that belong to its own family or to its own assembly; otherwise, false.

Remarks

The VisibilityMask is used to select the visibility attributes.

A Type object's family is defined as all objects of the exact same Type and of its subtypes.

See Also

Type Class | Type Members | System Namespace | TypeAttributes