MethodDescriptor.Parameters Property
.NET Framework 4
Available method parameters.
Namespace: Microsoft.AspNet.SignalR.Hubs
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Public Overridable Property Parameters As IList(Of ParameterDescriptor)
Get
Set
'Usage
Dim instance As MethodDescriptor
Dim value As IList(Of ParameterDescriptor)
value = instance.Parameters
instance.Parameters = value
public virtual IList<ParameterDescriptor> Parameters { get; set; }
public:
virtual property IList<ParameterDescriptor^>^ Parameters {
IList<ParameterDescriptor^>^ get ();
void set (IList<ParameterDescriptor^>^ value);
}
abstract Parameters : IList<ParameterDescriptor> with get, set
override Parameters : IList<ParameterDescriptor> with get, set
function get Parameters () : IList<ParameterDescriptor>
function set Parameters (value : IList<ParameterDescriptor>)
Property Value
Type: System.Collections.Generic.IList<ParameterDescriptor>
Returns IList<T>.