Interface IReadOnlyItem<T>
Summary description for IReadOnlyItem.
Namespace: ImageVault.EPiServer.Common
Assembly: ImageVault.EPiServer.Common.dll
Syntax
public interface IReadOnlyItem<out T>
where T : class
Type Parameters
Name | Description |
---|---|
T |
Properties
IsReadOnly
Checks if the item is readonly or not
Declaration
bool IsReadOnly { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
CreateWritableClone()
Creates a new object that is a copy of the current instance.
Declaration
T CreateWritableClone()
Returns
Type | Description |
---|---|
T | A new object that is a copy of this instance. |
MakeReadOnly()
Makes the instance readonly.
Declaration
void MakeReadOnly()