2 interfaces inheriting from IExtensibleObject
System.ServiceModel (2)
System\ServiceModel\Channels\IPeerNeighbor.cs (1)
10interface IPeerNeighbor : IExtensibleObject<IPeerNeighbor>
System\ServiceModel\IContextChannel.cs (1)
15public interface IContextChannel : IChannel, IExtensibleObject<IContextChannel>
3 implementations of IExtensibleObject
System.ServiceModel (3)
System\ServiceModel\InstanceContext.cs (1)
17public sealed class InstanceContext : CommunicationObject, IExtensibleObject<InstanceContext>
System\ServiceModel\OperationContext.cs (1)
16public sealed class OperationContext : IExtensibleObject<OperationContext>
System\ServiceModel\ServiceHost.cs (1)
30public abstract class ServiceHostBase : CommunicationObject, IExtensibleObject<ServiceHostBase>, IDisposable
7 references to IExtensibleObject
System.ServiceModel (7)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1657IExtensionCollection<IContextChannel> IExtensibleObject<IContextChannel>.Extensions
System\ServiceModel\ClientBase.cs (2)
1343IExtensionCollection<IContextChannel> IExtensibleObject<IContextChannel>.Extensions 1345get { return ((IExtensibleObject<IContextChannel>)this.channel).Extensions; }
System\ServiceModel\ExtensionCollection.cs (1)
13where T : IExtensibleObject<T>
System\ServiceModel\IExtensibleObject.cs (1)
11where T : IExtensibleObject<T>
System\ServiceModel\IExtension.cs (1)
9public interface IExtension<T> where T : IExtensibleObject<T>
System\ServiceModel\IExtensionCollection.cs (1)
12where T : IExtensibleObject<T>