C# Класс Microsoft.AspNet.WebHooks.WebHookQueueContext

Provides a queue context used by WebHookQueueHandler to enqueue a WebHook for subsequent processing.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
WebHookQueueContext ( ) : System

Initializes a new instance of the WebHookQueueContext with default values.

WebHookQueueContext ( string receiver, WebHookHandlerContext context ) : System

Initializes a new instance of the WebHookQueueContext with the given context.

Описание методов

WebHookQueueContext() публичный Метод

Initializes a new instance of the WebHookQueueContext with default values.
public WebHookQueueContext ( ) : System
Результат System

WebHookQueueContext() публичный Метод

Initializes a new instance of the WebHookQueueContext with the given context.
public WebHookQueueContext ( string receiver, WebHookHandlerContext context ) : System
receiver string The name of the which processed the incoming WebHook. The /// receiver can for example be dropbox or github.
context WebHookHandlerContext The instance for this WebHook.
Результат System