InteractiveRequestOptions.TryAddAdditionalParameter<TValue> Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.