/// <summary> /// Returns a collection of all available versions of a given process. Allows /// odata query options. /// </summary> /// <remarks> /// Required permissions: Packages.View. /// </remarks> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='processId'> /// The Id of the process for which the versions are fetched. /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <ODataResponseListProcessDto> GetProcessVersionsByProcessidAsync(this IProcesses operations, string processId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.GetProcessVersionsByProcessidWithHttpMessagesAsync(processId, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }
/// <summary> /// Returns a collection of all available versions of a given process. Allows /// odata query options. /// </summary> /// <remarks> /// Required permissions: Packages.View. /// </remarks> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='processId'> /// The Id of the process for which the versions are fetched. /// </param> /// <param name='expand'> /// Expands related entities inline. /// </param> /// <param name='filter'> /// Filters the results, based on a Boolean condition. /// </param> /// <param name='select'> /// Selects which properties to include in the response. /// </param> /// <param name='orderby'> /// Sorts the results. /// </param> /// <param name='top'> /// Returns only the first n results. /// </param> /// <param name='skip'> /// Skips the first n results. /// </param> /// <param name='count'> /// Includes a count of the matching results in the odata-count header. /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <ODataResponseListProcessDto> GetProcessVersionsByProcessidAsync(this IProcesses operations, string processId, string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), int?top = default(int?), int?skip = default(int?), bool?count = default(bool?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { using (var _result = await operations.GetProcessVersionsByProcessidWithHttpMessagesAsync(processId, expand, filter, select, orderby, top, skip, count, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }