IQueryInterface.QueryInterface<T> Method |
Namespace: PostSharp.Patterns.DynamicAdvising
Assembly: PostSharp.Patterns.Common (in PostSharp.Patterns.Common.dll) Version: 2023.0.3.0 (2023.0.3.0)
T QueryInterface<T>() where T : class
Type Parameters
- T
- The type of the required interface.
Return Value
Type: TAn object implementing the T interface on behalf of the current object, or null if the current object does not implement the T interface.
This method shall return the current object if the type of the current object statically implements the interface. Otherwise, the method shall return another object that implements T on behalf of the current object. In this case, the returned object shall implement the IDynamicInterfaceImplementation interface, which allows to navigate back to the current object.
User code typically uses the QueryInterface``1(Object, Boolean) extension method.