ReadOnlyAttribute.IsReadOnly Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает значение, показывающее, доступно ли свойство, с которым связан этот атрибут, только для чтения.
public:
property bool IsReadOnly { bool get(); };
public bool IsReadOnly { get; }
member this.IsReadOnly : bool
Public ReadOnly Property IsReadOnly As Boolean
Значение свойства
Значение true
, если свойство, с которым связан этот атрибут, доступно только для чтения, или значение false
, если это свойство доступно и для чтения, и для записи.
Примеры
В следующем примере кода проверяется, доступен ли MyProperty
только для чтения. Во-первых, код получает атрибуты для MyProperty
, выполнив следующие действия:
PropertyDescriptorCollection Получение со всеми свойствами объекта .
Индексирование в для PropertyDescriptorCollection получения
MyProperty
.Сохранение атрибутов для этого свойства в переменной attributes.
Затем код задает myAttribute
значение ReadOnlyAttribute в AttributeCollection и проверяет, доступно ли свойство только для чтения.
// Gets the attributes for the property.
AttributeCollection^ attributes = TypeDescriptor::GetProperties( this )[ "MyProperty" ]->Attributes;
// Checks to see whether the property is read-only.
ReadOnlyAttribute^ myAttribute = dynamic_cast<ReadOnlyAttribute^>(attributes[ ReadOnlyAttribute::typeid ]);
if ( myAttribute->IsReadOnly )
{
// Insert code here.
}
// Gets the attributes for the property.
AttributeCollection attributes =
TypeDescriptor.GetProperties(this)["MyProperty"].Attributes;
// Checks to see whether the property is read-only.
ReadOnlyAttribute myAttribute =
(ReadOnlyAttribute)attributes[typeof(ReadOnlyAttribute)];
if(myAttribute.IsReadOnly) {
// Insert code here.
}
' Gets the attributes for the property.
Dim attributes As AttributeCollection = _
TypeDescriptor.GetProperties(Me)("MyProperty").Attributes
' Checks to see whether the property is read-only.
Dim myAttribute As ReadOnlyAttribute = _
CType(attributes(GetType(ReadOnlyAttribute)), ReadOnlyAttribute)
If myAttribute.IsReadOnly Then
' Insert code here.
End If