Пример #1
0
 /// <summary>
 /// Subscribe to the DocumentFormSignedEvent event. This is fired when a form is signed if there is more than one signer this is fired when the last signer have signed.
 /// </summary>
 /// <param name="eventClient"></param>
 /// <param name="@event"></param>
 /// <returns></returns>
 public static EventClient SubscribeToDocumentFormSignedEvent(this EventClient eventClient,
                                                              Func <DocumentFormSignedEvent, Task> @event)
 {
     if (@event != null)
     {
         eventClient.SubscribeToDocumentFormSignedEvent(@event);
     }
     return(eventClient);
 }