Пример #1
0
 /// <summary>
 /// Subscribe to the SDO saved event. This is fired when all the signers on a document have signed and the SDO file have been saved to storage
 /// </summary>
 /// <param name="eventClient"></param>
 /// <param name="event"></param>
 /// <returns></returns>
 public static EventClient SubscribeToDocumentSDOSavedEvent(this EventClient eventClient,
                                                            Func <DocumentSDOSavedEvent, byte[], Task> @event)
 {
     if (@event != null)
     {
         eventClient.SubscribeToDocumentSDOSavedEvent(@event);
     }
     return(eventClient);
 }