Class HostChannel<TService>
Represents a channel to a host providing a WCF service.
Inheritance
System.Object
HostChannel<TService>
Implements
System.IDisposable
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TopSolid.Cam.NC.Kernel.Automating
Assembly: TopSolid.Cam.NC.Kernel.Automating.dll
Syntax
public class HostChannel<TService> : IDisposable
Type Parameters
Name | Description |
---|---|
TService | WCF service contract interface. |
Constructors
HostChannel()
Initializes a new empty instance of the HostChannel<TService> class.
Declaration
public HostChannel()
Properties
ChannelFactory
Gets the channel factory, or null if none.
Declaration
public ChannelFactory<TService> ChannelFactory { get; }
Property Value
Type | Description |
---|---|
System.ServiceModel.ChannelFactory<TService> |
Service
Gets the service, or null if none.
Declaration
public TService Service { get; }
Property Value
Type | Description |
---|---|
TService |
Methods
Dispose()
Implements System.IDisposable.Dispose().
Declaration
public void Dispose()
Implements
System.IDisposable