FeedError() публичный абстрактный Метод

Notifies the handle that the transaction has errored out
public abstract FeedError ( ServiceError error ) : void
error ServiceError The error that occured
Результат void
Пример #1
0
 /// <summary>
 /// Called whenever an error message is received
 /// for this transaction
 /// </summary>
 /// <param name="message">The error message</param>
 public void OnError(ErrorMessage message)
 {
     lock (_lock)
     {
         if (_state == ClientState.AwaitConfirmation)
         {
             _handle.FeedError(message.Error);
             _transitionTo(ClientState.Disposed);
         }
     }
 }