Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

IExtension<T> Interface

Definition

Namespace:
System.ServiceModel
Assemblies:
System.ServiceModel.dll, System.ServiceModel.Primitives.dll
Assembly:
System.ServiceModel.Primitives.dll
Assembly:
System.ServiceModel.dll
Package:
System.ServiceModel.Primitives v10.0.652802
Source:
IExtension.cs
Source:
IExtension.cs
Source:
IExtension.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Enables an object to extend another object through aggregation.

generic <typename T>
 where T : IExtensibleObject<T>public interface class IExtension
public interface IExtension<T> where T : IExtensibleObject<T>
type IExtension<'T (requires 'T :> IExtensibleObject<'T>)> = interface
Public Interface IExtension(Of T)

Type Parameters

T

The object that participates in the custom behavior.

Derived

Remarks

WCF allows you to extend System.ServiceModel.IExtensibleObject<T> objects (the System.ServiceModel.IContextChannel, System.ServiceModel.ServiceHost, System.ServiceModel.InstanceContext, and System.ServiceModel.OperationContext classes) by adding a new state or behavior by using its extensible object pattern. The extensible object pattern is used in WCF to either extend existing run-time classes with new functionality or to add new state features to an object.

Methods

Name Description
Attach(T)

Enables an extension object to find out when it has been aggregated. Called when the extension is added to the Extensions property.

Detach(T)

Enables an object to find out when it is no longer aggregated. Called when an extension is removed from the Extensions property.

Applies to


Feedback

Was this page helpful?