JavascriptCallbackBehaviorAttribute 类
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
一个协定行为,可以使用此行为将 URL 查询字符串参数名称设置为不同于默认的“callback”的某个名称。
public ref class JavascriptCallbackBehaviorAttribute sealed : Attribute, System::ServiceModel::Description::IContractBehavior
[System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false)]
public sealed class JavascriptCallbackBehaviorAttribute : Attribute, System.ServiceModel.Description.IContractBehavior
[<System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false)>]
type JavascriptCallbackBehaviorAttribute = class
inherit Attribute
interface IContractBehavior
Public NotInheritable Class JavascriptCallbackBehaviorAttribute
Inherits Attribute
Implements IContractBehavior
- 继承
- 属性
- 实现
JSONP 是一种用于在 Web 浏览器中启用跨站点脚本支持的机制。 JSONP 涉及发送一个带有作为 URL 查询字符串参数值提供的回调函数名称的请求。 相应的服务将返回一个响应,其中带有包装在对所提供的回调函数的调用中的常规 JSON 负载(如同一行可执行代码)。
以下是用于调用某个服务的 URL 的示例:http://baseAddress/Service/RESTService?callback=functionName
。 在调用该服务时,该服务将使用以下 JSON 进行响应:
functionName({ "root":"Something});
通过 JavascriptCallbackBehaviorAttribute,开发人员可以指定 URL 查询字符串参数的名称以解释为回调参数。 默认值为“callback” (不区分大小写) 。
下面的示例演示如何将此特性应用于服务协定。
[ServiceContract]
[JavascriptCallbackBehavior]
public class Service1
{
[OperationContract]
[WebGet(ResponseFormat=WebMessageFormat.Json)]
public string GetData()
{
// ...
}
}
仅当此属性标记与 一起使用 WebHttpBinding 的服务协定类型并且 CrossDomainScriptAccessEnabled 绑定的 属性设置为 true
时适用。
Type |
在派生类中实现时,获取此 Attribute 的唯一标识符。 (继承自 Attribute) |
Url |
获取或设置用于跨域脚本访问的 URL 查询字符串参数名称。 |
Add |
AddBindingParameters(ContractDescription, ServiceEndpoint, BindingParameterCollection) 方法的实现。 |
Apply |
ApplyClientBehavior(ContractDescription, ServiceEndpoint, ClientRuntime) 方法的实现。 |
Apply |
ApplyDispatchBehavior(ContractDescription, ServiceEndpoint, DispatchRuntime) 方法的实现。 |
Equals(Object) |
返回一个值,该值指示此实例是否与指定的对象相等。 (继承自 Attribute) |
Get |
返回此实例的哈希代码。 (继承自 Attribute) |
Get |
获取当前实例的 Type。 (继承自 Object) |
Is |
在派生类中重写时,指示此实例的值是否是派生类的默认值。 (继承自 Attribute) |
Match(Object) |
当在派生类中重写时,返回一个指示此实例是否等于指定对象的值。 (继承自 Attribute) |
Memberwise |
创建当前 Object 的浅表副本。 (继承自 Object) |
To |
返回表示当前对象的字符串。 (继承自 Object) |
Validate(Contract |
_Attribute. |
将一组名称映射为对应的一组调度标识符。 (继承自 Attribute) |
_Attribute. |
检索对象的类型信息,然后可以使用该信息获取接口的类型信息。 (继承自 Attribute) |
_Attribute. |
检索对象提供的类型信息接口的数量(0 或 1)。 (继承自 Attribute) |
_Attribute. |
提供对某一对象公开的属性和方法的访问。 (继承自 Attribute) |
产品 | 版本 |
---|---|
.NET Framework | 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |