你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

RankRequest 构造函数

定义

重载

RankRequest()

初始化 RankRequest 类的新实例。

RankRequest(IList<RankableAction>, IList<Object>, IList<String>, String, Nullable<Boolean>)

初始化 RankRequest 类的新实例。

RankRequest()

初始化 RankRequest 类的新实例。

public RankRequest ();
Public Sub New ()

适用于

RankRequest(IList<RankableAction>, IList<Object>, IList<String>, String, Nullable<Boolean>)

初始化 RankRequest 类的新实例。

public RankRequest (System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Personalizer.Models.RankableAction> actions, System.Collections.Generic.IList<object> contextFeatures = default, System.Collections.Generic.IList<string> excludedActions = default, string eventId = default, bool? deferActivation = default);
new Microsoft.Azure.CognitiveServices.Personalizer.Models.RankRequest : System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Personalizer.Models.RankableAction> * System.Collections.Generic.IList<obj> * System.Collections.Generic.IList<string> * string * Nullable<bool> -> Microsoft.Azure.CognitiveServices.Personalizer.Models.RankRequest
Public Sub New (actions As IList(Of RankableAction), Optional contextFeatures As IList(Of Object) = Nothing, Optional excludedActions As IList(Of String) = Nothing, Optional eventId As String = Nothing, Optional deferActivation As Nullable(Of Boolean) = Nothing)

参数

actions
IList<RankableAction>

个性化体验创建服务可从中选择的操作集。 该集不应包含超过 50 个操作。 操作的顺序不会影响排名结果,但顺序应与应用程序用于显示它们的顺序匹配。

contextFeatures
IList<Object>

将个性化体验创建服务用作字典的上下文特征。 这取决于应用程序,通常包括有关当前用户、其设备、配置文件信息、有关时间和日期的数据等的功能。

excludedActions
IList<String>

要从排名中排除的操作 ID 集。

eventId
String

(可选)传递唯一标识此 Rank 事件的 eventId。 如果为 null,则服务将生成唯一的 eventId。 eventId 将用于将此请求与其奖励相关联,以及在进行个性化体验创建服务调用时为伪随机生成器设定种子。

deferActivation
Nullable<Boolean>

如果用户将看到排名结果,则发送 false,因此个性化体验创建服务需要奖励调用,否则它将为事件分配默认奖励。 如果用户可能看不到排名结果,则发送 true,因为页面稍后呈现,或者排名结果可能被下游代码替代。

适用于