Opc.Ua.EndpointBase.ProcessRequestAsyncResult.CallSynchronously C# (CSharp) Method

CallSynchronously() public method

Used to call the default synchronous handler.
This method may block the current thread so the caller must not call in the thread that calls IServerBase.ScheduleIncomingRequest(). This method always traps any exceptions and reports them to the client as a fault.
public CallSynchronously ( ) : void
return void
            public void CallSynchronously()
            {
                OnProcessRequest(null);
            }