ICollectionDynamicAdvice<T> Interface |
Namespace: PostSharp.Patterns.Collections.Advices
Assembly: PostSharp.Patterns.Common (in PostSharp.Patterns.Common.dll) Version: 2023.0.3.0 (2023.0.3.0)
public interface ICollectionDynamicAdvice<T> : ICollectionDynamicAdviceBase, IDynamicAdvice, IDynamicInterfaceImplementation
Type Parameters
- T
- Type of collection items.
The ICollectionDynamicAdvice<T> type exposes the following members.
Name | Description | |
---|---|---|
AdvisedObject |
Gets the principal object for which the current object is an indirect interface implementation.
(Inherited from IDynamicInterfaceImplementation.) | |
Identity |
Gets the type identity of the advice, which should correspond to the first parameter of the Advise(Type, Func<IQueryInterface, IDynamicAdvice>) method.
This is typically the generic type definition of the advice
(Inherited from IDynamicAdvice.) | |
Order |
Gets the execution order of the dynamic advice. See DynamicAdviceOrder.
(Inherited from IDynamicAdvice.) |
Name | Description | |
---|---|---|
ClearItems |
Empties the advised collection.
| |
Dispose |
Disposes the current advice. // We don't use IDisposable so that advises are not be cast to IDisposable by default.
(Inherited from IDynamicAdvice.) | |
Initialize |
Initializes the current advice.
(Inherited from IDynamicAdvice.) | |
InsertItem |
Inserts an item into the advised collection.
| |
InsertMany |
Inserts several items to the advised collection.
| |
IsReadOnly |
Determines whether the advised collection is read-only.
(Inherited from ICollectionDynamicAdviceBase.) | |
IsSynchronized |
Determines whether the advised collection is synchronized (i.e. thread-safe).
(Inherited from ICollectionDynamicAdviceBase.) | |
MoveItem |
Moves an item of the advised collection from an old index to a new index.
| |
QueryInterface<T> |
Gets the implementation of an interface.
(Inherited from IDynamicAdvice.) | |
RemoveItem |
Removes an item from the advised collection.
| |
RemoveMany |
Removes several items from the advised collection.
| |
SetItem |
Replaces an item in the advised collection.
| |
ToArray |
Copies the advised collection into a new array.
|