Class ExecutionRequestBuilder
- Namespace
- Keycloak.AuthServices.Sdk.Kiota.Admin.Admin.Realms.Item.Authentication.Flows.Item.Executions.Execution
- Assembly
- Keycloak.AuthServices.Sdk.Kiota.dll
Builds and executes requests for operations under \admin\realms{realm}\authentication\flows{flowAlias-id}\executions\execution
public class ExecutionRequestBuilder : BaseRequestBuilder
- Inheritance
-
BaseRequestBuilderExecutionRequestBuilder
- Inherited Members
-
BaseRequestBuilder.PathParametersBaseRequestBuilder.RequestAdapterBaseRequestBuilder.UrlTemplate
Constructors
ExecutionRequestBuilder(Dictionary<string, object>, IRequestAdapter)
Instantiates a new ExecutionRequestBuilder and sets the default values.
public ExecutionRequestBuilder(Dictionary<string, object> pathParameters, IRequestAdapter requestAdapter)
Parameters
pathParameters
Dictionary<string, object>Path parameters for the request
requestAdapter
IRequestAdapterThe request adapter to use to execute the requests.
ExecutionRequestBuilder(string, IRequestAdapter)
Instantiates a new ExecutionRequestBuilder and sets the default values.
public ExecutionRequestBuilder(string rawUrl, IRequestAdapter requestAdapter)
Parameters
rawUrl
stringThe raw URL to use for the request builder.
requestAdapter
IRequestAdapterThe request adapter to use to execute the requests.
Methods
PostAsync(ExecutionPostRequestBody, Action<RequestConfiguration<DefaultQueryParameters>>?, CancellationToken)
Add new authentication execution to a flow
public Task<Stream?> PostAsync(ExecutionPostRequestBody body, Action<RequestConfiguration<DefaultQueryParameters>>? requestConfiguration = null, CancellationToken cancellationToken = default)
Parameters
body
ExecutionPostRequestBodyThe request body
requestConfiguration
Action<RequestConfiguration<DefaultQueryParameters>>Configuration for the request such as headers, query parameters, and middleware options.
cancellationToken
CancellationTokenCancellation token to use when cancelling requests
Returns
ToPostRequestInformation(ExecutionPostRequestBody, Action<RequestConfiguration<DefaultQueryParameters>>?)
Add new authentication execution to a flow
public RequestInformation ToPostRequestInformation(ExecutionPostRequestBody body, Action<RequestConfiguration<DefaultQueryParameters>>? requestConfiguration = null)
Parameters
body
ExecutionPostRequestBodyThe request body
requestConfiguration
Action<RequestConfiguration<DefaultQueryParameters>>Configuration for the request such as headers, query parameters, and middleware options.
Returns
- RequestInformation
A Microsoft.Kiota.Abstractions.RequestInformation
WithUrl(string)
Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
public ExecutionRequestBuilder WithUrl(string rawUrl)
Parameters
rawUrl
stringThe raw URL to use for the request builder.