C# 클래스 CQRSMicroservices.ServiceFabric.WebService.OwinCommunicationListener

An OWIN communication listener for Service Fabric stateless and stateful services.
상속: ICommunicationListener
파일 보기 프로젝트 열기: AFASResearch/CQRS-Playground

공개 메소드들

메소드 설명
Abort ( ) : void

Aborts the communication listener.

CloseAsync ( CancellationToken cancellationToken ) : Task

Closes the communication listener.

OpenAsync ( CancellationToken cancellationToken ) : Task

Opens the communication listener

OwinCommunicationListener ( ServiceInitializationParameters serviceInitializationParameters, IOwinAppBuilder startup, string appRoot = null, string endpointName = "ServiceEndpoint" ) : System

Initializes a new instance of the OwinCommunicationListener class.

비공개 메소드들

메소드 설명
StopWebServer ( ) : void

메소드 상세

Abort() 공개 메소드

Aborts the communication listener.
public Abort ( ) : void
리턴 void

CloseAsync() 공개 메소드

Closes the communication listener.
public CloseAsync ( CancellationToken cancellationToken ) : Task
cancellationToken System.Threading.CancellationToken The cancellation token.
리턴 Task

OpenAsync() 공개 메소드

Opens the communication listener
public OpenAsync ( CancellationToken cancellationToken ) : Task
cancellationToken System.Threading.CancellationToken The cancellation token.
리턴 Task

OwinCommunicationListener() 공개 메소드

Initializes a new instance of the OwinCommunicationListener class.
public OwinCommunicationListener ( ServiceInitializationParameters serviceInitializationParameters, IOwinAppBuilder startup, string appRoot = null, string endpointName = "ServiceEndpoint" ) : System
serviceInitializationParameters ServiceInitializationParameters The service initialization parameters.
startup IOwinAppBuilder The startup.
appRoot string The application root.
endpointName string The name of the endpoint in the ServiceManifest.xml to use, defaults to "ServiceEndpoint"
리턴 System