예제 #1
0
 public static Task <IHttpResponse> UpdateAsync(
     [WorkflowParameter(Value = "{{TeamsNotification}}")]
     [UpdateId] IRef <TeamsNotification> teamsNotificationRef,
     [MutateResource] MutateResource <TeamsNotification> updated,
     ContentTypeResponse <TeamsNotification> onUpdated,
     NotFoundResponse onNotFound,
     UnauthorizedResponse onUnauthorized)
 {
     return(teamsNotificationRef
            .HttpPatchAsync(updated,
                            onUpdated,
                            onNotFound));
 }