Share via


NonbindingParameterConfiguration Class

Represents a non-binding procedure parameter. Non-binding parameters are provided in the POST body for Actions Non-binding parameters are provided in 3 ways for Functions - ~/.../Function(p1=value) - ~/.../Function(p1=@x)?@x=value - ~/.../Function?p1=value (only allowed if the Function is the last url path segment).

Inheritance Hierarchy

System.Object
  System.Web.Http.OData.Builder.ParameterConfiguration
    System.Web.Http.OData.Builder.NonbindingParameterConfiguration

Namespace:  System.Web.Http.OData.Builder
Assembly:  System.Web.Http.OData (in System.Web.Http.OData.dll)

Syntax

'Declaration
Public Class NonbindingParameterConfiguration _
    Inherits ParameterConfiguration
'Usage
Dim instance As NonbindingParameterConfiguration
public class NonbindingParameterConfiguration : ParameterConfiguration
public ref class NonbindingParameterConfiguration : public ParameterConfiguration
type NonbindingParameterConfiguration =  
    class 
        inherit ParameterConfiguration 
    end
public class NonbindingParameterConfiguration extends ParameterConfiguration

The NonbindingParameterConfiguration type exposes the following members.

Constructors

  Name Description
Public method NonbindingParameterConfiguration Initializes a new instance of the NonbindingParameterConfiguration class.

Top

Properties

  Name Description
Public property Name The name of the parameter. (Inherited from ParameterConfiguration.)
Public property TypeConfiguration The type of the parameter. (Inherited from ParameterConfiguration.)

Top

Methods

  Name Description
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Protected method MemberwiseClone (Inherited from Object.)
Public method ToString (Inherited from Object.)

Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

System.Web.Http.OData.Builder Namespace