InteractiveRequestOptions.TryAddAdditionalParameter<TValue> Method

Definition

Tries to add an additional parameter to pass in to the underlying provider.

public bool TryAddAdditionalParameter<TValue> (string name, TValue value);
member this.TryAddAdditionalParameter : string * 'Value -> bool
Public Function TryAddAdditionalParameter(Of TValue) (name As String, value As TValue) As Boolean

Type Parameters

TValue

Parameters

name
String
value
TValue

Returns

Remarks

The underlying provider is free to apply these parameters as it sees fit or ignore them completely. In the default implementations the parameters will be JSON serialized using System.Text.Json and passed as a parameter to the underlying JavaScript implementation that handles the operation details.

Applies to