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!

FieldInfo.IsFamilyAndAssembly

Indicates whether this field has FamilyANDAssembly level visibility.

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

Property Value

Read-only. true if the field has the FamANDAssem attribute set; otherwise, false.

Remarks

If a field has FamilyAndAssembly level visibility, it can be called from any member in a derived class that is also in the same assembly, but not from any other type.

The IsFamilyAndAssembly property is set when the FieldAttributes.FamANDAssem attribute is set.

See Also

FieldInfo Class | FieldInfo Members | System.Reflection Namespace | FieldAttributes