JSInvokableAttribute 类

定义

将 .NET 方法标识为允许从 JavaScript 代码调用。 任何标有此属性的方法都可能从不受信任的调用方接收任意参数值。 应仔细验证所有输入。

public ref class JSInvokableAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Method, AllowMultiple=true)]
public sealed class JSInvokableAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Method, AllowMultiple=true)>]
type JSInvokableAttribute = class
    inherit Attribute
Public NotInheritable Class JSInvokableAttribute
Inherits Attribute
继承
JSInvokableAttribute
属性

构造函数

JSInvokableAttribute()

构造 的实例, JSInvokableAttribute 但不设置方法的标识符。

JSInvokableAttribute(String)

使用指定的标识符构造 的 JSInvokableAttribute 实例。

属性

Identifier

获取方法的标识符。 标识符在程序集范围内必须是唯一的。

如果未设置,则标识符取自方法的名称。 在这种情况下,方法名称在程序集中必须是唯一的。

适用于