InvokeArgs.Parameters Property
[WCF RIA Services Version 1 Service Pack 2 is compatible with either .NET framework 4 or .NET Framework 4.5, and with either Silverlight 4 or Silverlight 5.]
Gets the parameters, if any, required by the operation.
Namespace: System.ServiceModel.DomainServices.Client
Assembly: System.ServiceModel.DomainServices.Client (in System.ServiceModel.DomainServices.Client.dll)
Syntax
'Declaration
Public ReadOnly Property Parameters As IDictionary(Of String, Object)
Get
'Usage
Dim instance As InvokeArgs
Dim value As IDictionary(Of String, Object)
value = instance.Parameters
public IDictionary<string, Object> Parameters { get; }
public:
property IDictionary<String^, Object^>^ Parameters {
IDictionary<String^, Object^>^ get ();
}
member Parameters : IDictionary<string, Object>
function get Parameters () : IDictionary<String, Object>
Property Value
Type: System.Collections.Generic.IDictionary<String, Object>
The parameters required by the operation, or nulla null reference (Nothing in Visual Basic) if the method takes no parameters.