KeysController.Put Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Put(String, Key) | |
Put(String, String, Key) |
Put(String, Key)
[System.Web.Http.HttpPut]
[System.Web.Http.Route("admin/host/{keys:regex(^(keys|functionkeys|systemkeys)$)}/{keyName}")]
public System.Threading.Tasks.Task<System.Web.Http.IHttpActionResult> Put(string keyName, Microsoft.Azure.WebJobs.Script.WebHost.Key key);
[<System.Web.Http.HttpPut>]
[<System.Web.Http.Route("admin/host/{keys:regex(^(keys|functionkeys|systemkeys)$)}/{keyName}")>]
member this.Put : string * Microsoft.Azure.WebJobs.Script.WebHost.Key -> System.Threading.Tasks.Task<System.Web.Http.IHttpActionResult>
Public Function Put (keyName As String, key As Key) As Task(Of IHttpActionResult)
Parameters
- keyName
- String
- key
- Key
Returns
Task<System.Web.Http.IHttpActionResult>
- Attributes
-
System.Web.Http.HttpPutAttribute System.Web.Http.RouteAttribute
Applies to
Put(String, String, Key)
[System.Web.Http.HttpPut]
[System.Web.Http.Route("admin/functions/{name}/keys/{keyName}")]
public System.Threading.Tasks.Task<System.Web.Http.IHttpActionResult> Put(string name, string keyName, Microsoft.Azure.WebJobs.Script.WebHost.Key key);
[<System.Web.Http.HttpPut>]
[<System.Web.Http.Route("admin/functions/{name}/keys/{keyName}")>]
member this.Put : string * string * Microsoft.Azure.WebJobs.Script.WebHost.Key -> System.Threading.Tasks.Task<System.Web.Http.IHttpActionResult>
Public Function Put (name As String, keyName As String, key As Key) As Task(Of IHttpActionResult)
Parameters
- name
- String
- keyName
- String
- key
- Key
Returns
Task<System.Web.Http.IHttpActionResult>
- Attributes
-
System.Web.Http.HttpPutAttribute System.Web.Http.RouteAttribute
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET