Compartir a través de


JsonRpcRequest.Arguments Propiedad

Definición

Obtiene o establece los argumentos que se van a usar al invocar el especificado Method. Una matriz de argumentos o un objeto cuyas propiedades se usan en un objeto arguments con nombre.

[System.Runtime.Serialization.DataMember(EmitDefaultValue=false, IsRequired=false, Name="params", Order=2)]
public object Arguments { get; set; }
[System.Runtime.Serialization.DataMember(EmitDefaultValue=false, IsRequired=false, Name="params", Order=3)]
public object? Arguments { get; set; }
[<System.Runtime.Serialization.DataMember(EmitDefaultValue=false, IsRequired=false, Name="params", Order=2)>]
member this.Arguments : obj with get, set
[<System.Runtime.Serialization.DataMember(EmitDefaultValue=false, IsRequired=false, Name="params", Order=3)>]
member this.Arguments : obj with get, set
Public Property Arguments As Object

Valor de propiedad

Matriz de argumentos OR asignación de argumentos con nombre. Preferiblemente, una instancia de IReadOnlyDictionary<TKey,TValue> donde la clave es una cadena que representa el nombre del parámetro y el valor es el argumento o una matriz de Object. Si ninguno de ellos, ArgumentCount y TryGetArgumentByNameOrIndex(String, Int32, Type, Object) se debe invalidar.

Atributos

Se aplica a