_MethodBase.IsFamily Свойство
Определение
public:
property bool IsFamily { bool get(); };
public bool IsFamily { get; }
member this.IsFamily : bool
Public ReadOnly Property IsFamily As Boolean
Значение свойства
Значение true
, если доступ к этому методу предоставляется только элементам данного класса и элементам производных классов, в противном случае — значение false
.true
if access to the class is restricted to members of the class itself and to members of its derived classes; otherwise, false
.
Комментарии
Это свойство предназначено для доступа к управляемым классам из неуправляемого кода и не должно вызываться из управляемого кода.This property is for access to managed classes from unmanaged code and should not be called from managed code.
IsFamilyСвойство получает значение, указывающее, ограничен ли доступ к этому методу членам класса и членам его производных классов.The IsFamily property gets a value indicating whether access to this method is restricted to members of the class and members of its derived classes.