Microsoft.Http.PollingAgent.InvokeHandler C# (CSharp) Méthode

InvokeHandler() private méthode

private InvokeHandler ( ConditionalGetEventArgs args ) : bool
args ConditionalGetEventArgs
Résultat bool
        bool InvokeHandler(ConditionalGetEventArgs args)
        {
            if (this.syncContext != null)
            {
                this.syncContext.Send(new SendOrPostCallback(this.InvokeHandlerCore), args);
            }
            else
            {
                this.InvokeHandlerCore(args);
            }
            return args.StopPolling;
        }

Same methods

PollingAgent::InvokeHandler ( Exception error ) : bool
PollingAgent::InvokeHandler ( HttpResponseMessage response ) : bool