BindingParameterConfiguration Constructor
Create a BindingParameterConfiguration
Namespace: System.Web.Http.OData.Builder
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Syntax
'Declaration
Public Sub New ( _
name As String, _
parameterType As IEdmTypeConfiguration, _
alwaysBindable As Boolean _
)
'Usage
Dim name As String
Dim parameterType As IEdmTypeConfiguration
Dim alwaysBindable As Boolean
Dim instance As New BindingParameterConfiguration(name, parameterType, _
alwaysBindable)
public BindingParameterConfiguration(
string name,
IEdmTypeConfiguration parameterType,
bool alwaysBindable
)
public:
BindingParameterConfiguration(
String^ name,
IEdmTypeConfiguration^ parameterType,
bool alwaysBindable
)
new :
name:string *
parameterType:IEdmTypeConfiguration *
alwaysBindable:bool -> BindingParameterConfiguration
public function BindingParameterConfiguration(
name : String,
parameterType : IEdmTypeConfiguration,
alwaysBindable : boolean
)
Parameters
- name
Type: System.String
The name of the Binding Parameter
- parameterType
Type: System.Web.Http.OData.Builder.IEdmTypeConfiguration
The type of the Binding Parameter
- alwaysBindable
Type: System.Boolean
Whether the action can always be bound to instances of the binding parameter.