AzureFunctions.Controllers.AzureFunctionsController.GetBindingConfig C# (CSharp) Method

GetBindingConfig() private method

private GetBindingConfig ( [ runtime ) : Task
runtime [
return Task
        public async Task<HttpResponseMessage> GetBindingConfig([FromUri] string runtime)
        {
            runtime = getClearRuntime(runtime);

            return Request.CreateResponse(HttpStatusCode.OK, await _templatesManager.GetBindingConfigAsync(runtime));
        }