PersonalizerClientExtensions.Reward Method

Definition

Overloads

Reward(IPersonalizerClient, String, RewardRequest)

Report reward to allocate to the top ranked action for the specified event.

Reward(IPersonalizerClient, String, Double)

Report reward to allocate to the top ranked action for the specified event.

Reward(IPersonalizerClient, String, RewardRequest)

Report reward to allocate to the top ranked action for the specified event.

public static void Reward (this Microsoft.Azure.CognitiveServices.Personalizer.IPersonalizerClient client, string eventId, Microsoft.Azure.CognitiveServices.Personalizer.Models.RewardRequest reward);
static member Reward : Microsoft.Azure.CognitiveServices.Personalizer.IPersonalizerClient * string * Microsoft.Azure.CognitiveServices.Personalizer.Models.RewardRequest -> unit
<Extension()>
Public Sub Reward (client As IPersonalizerClient, eventId As String, reward As RewardRequest)

Parameters

client
IPersonalizerClient

The PersonalizerClient for this extension method.

eventId
String

The event id this reward applies to.

reward
RewardRequest

The reward should be a floating point number.

Applies to

Reward(IPersonalizerClient, String, Double)

Report reward to allocate to the top ranked action for the specified event.

public static void Reward (this Microsoft.Azure.CognitiveServices.Personalizer.IPersonalizerClient client, string eventId, double reward);
static member Reward : Microsoft.Azure.CognitiveServices.Personalizer.IPersonalizerClient * string * double -> unit
<Extension()>
Public Sub Reward (client As IPersonalizerClient, eventId As String, reward As Double)

Parameters

client
IPersonalizerClient

The PersonalizerClient for this extension method.

eventId
String

The event id this reward applies to.

reward
Double

The reward to be assigned to an action. Value must be between -1 and 1 inclusive.

Applies to