JavascriptCallbackBehaviorAttribute 类

定义

一个协定行为,可以使用此行为将 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
继承
JavascriptCallbackBehaviorAttribute
属性
实现

注解

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时适用。

构造函数

JavascriptCallbackBehaviorAttribute()

初始化 JavascriptCallbackBehaviorAttribute 类的新实例。

属性

TypeId

在派生类中实现时,获取此 Attribute 的唯一标识符。

(继承自 Attribute)
UrlParameterName

获取或设置用于跨域脚本访问的 URL 查询字符串参数名称。

方法

AddBindingParameters(ContractDescription, ServiceEndpoint, BindingParameterCollection)

AddBindingParameters(ContractDescription, ServiceEndpoint, BindingParameterCollection) 方法的实现。

ApplyClientBehavior(ContractDescription, ServiceEndpoint, ClientRuntime)

ApplyClientBehavior(ContractDescription, ServiceEndpoint, ClientRuntime) 方法的实现。

ApplyDispatchBehavior(ContractDescription, ServiceEndpoint, DispatchRuntime)

ApplyDispatchBehavior(ContractDescription, ServiceEndpoint, DispatchRuntime) 方法的实现。

Equals(Object)

返回一个值,该值指示此实例是否与指定的对象相等。

(继承自 Attribute)
GetHashCode()

返回此实例的哈希代码。

(继承自 Attribute)
GetType()

获取当前实例的 Type

(继承自 Object)
IsDefaultAttribute()

在派生类中重写时,指示此实例的值是否是派生类的默认值。

(继承自 Attribute)
Match(Object)

当在派生类中重写时,返回一个指示此实例是否等于指定对象的值。

(继承自 Attribute)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

返回表示当前对象的字符串。

(继承自 Object)
Validate(ContractDescription, ServiceEndpoint)

Validate(ContractDescription, ServiceEndpoint) 方法的实现。

显式接口实现

_Attribute.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr)

将一组名称映射为对应的一组调度标识符。

(继承自 Attribute)
_Attribute.GetTypeInfo(UInt32, UInt32, IntPtr)

检索对象的类型信息,然后可以使用该信息获取接口的类型信息。

(继承自 Attribute)
_Attribute.GetTypeInfoCount(UInt32)

检索对象提供的类型信息接口的数量(0 或 1)。

(继承自 Attribute)
_Attribute.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)

提供对某一对象公开的属性和方法的访问。

(继承自 Attribute)

适用于