/// <summary> /// Update entity in incidents /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='incidentid'> /// key: incidentid of incident /// </param> /// <param name='body'> /// New property values /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task UpdateAsync(this IIncidents operations, string incidentid, MicrosoftDynamicsCRMincident body, CancellationToken cancellationToken = default(CancellationToken)) { (await operations.UpdateWithHttpMessagesAsync(incidentid, body, null, cancellationToken).ConfigureAwait(false)).Dispose(); }
/// <summary> /// Update entity in incidents /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='incidentid'> /// key: incidentid /// </param> /// <param name='body'> /// New property values /// </param> /// <param name='customHeaders'> /// Headers that will be added to request. /// </param> public static HttpOperationResponse UpdateWithHttpMessages(this IIncidents operations, string incidentid, MicrosoftDynamicsCRMincident body, Dictionary <string, List <string> > customHeaders = null) { return(operations.UpdateWithHttpMessagesAsync(incidentid, body, customHeaders, CancellationToken.None).ConfigureAwait(false).GetAwaiter().GetResult()); }