WcfServiceRemotingListener Class

Definition

An IServiceRemotingListener that uses Windows Communication Foundation to provide interface remoting for stateless and stateful services.

public class WcfServiceRemotingListener : Microsoft.ServiceFabric.Services.Communication.Runtime.ICommunicationListener, Microsoft.ServiceFabric.Services.Remoting.Runtime.IServiceRemotingListener
type WcfServiceRemotingListener = class
    interface IServiceRemotingListener
    interface ICommunicationListener
Public Class WcfServiceRemotingListener
Implements ICommunicationListener, IServiceRemotingListener
Inheritance
WcfServiceRemotingListener
Derived
Implements

Constructors

WcfServiceRemotingListener(ServiceContext, IService, Binding, IServiceRemotingMessageSerializationProvider, String, Boolean)

Initializes a new instance of the WcfServiceRemotingListener class.

WcfServiceRemotingListener(ServiceContext, IServiceRemotingMessageHandler, IServiceRemotingMessageSerializationProvider, Binding, EndpointAddress, Boolean)

Initializes a new instance of the WcfServiceRemotingListener class.

WcfServiceRemotingListener(ServiceContext, IServiceRemotingMessageHandler, IServiceRemotingMessageSerializationProvider, Binding, String, Boolean)

Initializes a new instance of the WcfServiceRemotingListener class.

Properties

ServiceHost

Gets the ServiceHost used by this listener to host the WCF service implementation.

Explicit Interface Implementations

ICommunicationListener.Abort()

This method causes the communication listener to close. Close is a terminal state and this method causes the transition to close ungracefully. Any outstanding operations (including close) should be canceled when this method is called.

ICommunicationListener.CloseAsync(CancellationToken)

This method causes the communication listener to close. Close is a terminal state and this method allows the communication listener to transition to this state in a graceful manner.

ICommunicationListener.OpenAsync(CancellationToken)

This method causes the communication listener to be opened. Once the Open completes, the communication listener becomes usable - accepts and sends messages.

Applies to