Microsoft.Azure.WebJobs.Script.Binding.HttpTriggerAttributeBindingProvider.HttpTriggerBinding.CreateListenerAsync C# (CSharp) Méthode

CreateListenerAsync() public méthode

public CreateListenerAsync ( Microsoft.Azure.WebJobs.Host.Listeners.ListenerFactoryContext context ) : Task
context Microsoft.Azure.WebJobs.Host.Listeners.ListenerFactoryContext
Résultat Task
            public Task<IListener> CreateListenerAsync(ListenerFactoryContext context)
            {
                if (context == null)
                {
                    throw new ArgumentNullException("context");
                }

                return Task.FromResult<IListener>(new NullListener());
            }