PushTechnology.ClientInterface.GettingStarted.UpdateCallback.OnError C# (CSharp) Method

OnError() public method

Notification of a contextual error related to this callback.
Situations in which OnError is called include the session being closed, a communication timeout, or a problem with the provided parameters. No further calls will be made to this callback.
public OnError ( ErrorReason errorReason ) : void
errorReason ErrorReason A value representing the error
return void
        public void OnError( ErrorReason errorReason )
        {
            Console.WriteLine( "Topic {0} could not be updated : {1}", topic, errorReason );
        }