你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
FunctionName Interface
Implements
public interface FunctionName
implements java.lang.annotation.Annotation
The FunctionName
annotation is used to specify to the Azure Functions tooling what name is to be applied to the associated function when the function is deployed onto Azure. This becomes the endpoint (in the case of an HttpTrigger function, for example, but more generally it is what is shown to users in the Azure Portal, so a succinct and understandable function name is useful.
An example of how the FunctionName
annotation is shown in the code snippet below. Note that it is applied to the function that will be called by Azure, based on the specified trigger (in the code below it is a HttpTrigger).
@FunctionName("redirect")
public HttpResponseMessage<String> redirectFunction(
@HttpTrigger(name = "req",
methods = {"get"}, authLevel = AuthorizationLevel.ANONYMOUS)
HttpRequestMessage<Optional<String>> request) {
....
}
Method Summary
Modifier and Type | Method and Description |
---|---|
abstract java.lang.String |
value()
The name of the function. |
Method Details
value
public abstract String value()
The name of the function.
Returns: