GitHub.

WithRequest(string, Func<IExecutionContext, GitHubClient, Object>) Method

Summary

Submits a request to the GitHub client. This allows you to incorporate data from the execution context in your request.
Assembly
Wyam.GitHub.dll
Namespace
Wyam.GitHub
Containing Type
GitHub

Syntax

public GitHub WithRequest(string key, Func<IExecutionContext, GitHubClient, Object> request)

Parameters

Name Type Description
key string The metadata key in which to store the return value of the request function.
request Func<IExecutionContext, GitHubClient, Object> A function with the request to make.

Return Value

Type Description
GitHub The current module instance.
GitHub