Property IsFrozen
| Improve this Doc View SourceIsFrozen
Gets a value indicates whether this object is currently modifiable.
Declaration
public abstract bool IsFrozen { get; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the object is frozen and cannot be modified; otherwise false. |
Remarks
Attempting to modify this object when its IsFrozen property is set to true throws an System.InvalidOperationException. All derived classes should respect this property by calling VerifyFrozenAccess() in all public methods and property setters that might modify this object.