ProcedureConfiguration Class
Represents a Procedure that is exposed in the model.
Inheritance Hierarchy
System.Object
System.Web.Http.OData.Builder.ProcedureConfiguration
System.Web.Http.OData.Builder.ActionConfiguration
Namespace: System.Web.Http.OData.Builder
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Syntax
'Declaration
Public MustInherit Class ProcedureConfiguration
'Usage
Dim instance As ProcedureConfiguration
public abstract class ProcedureConfiguration
public ref class ProcedureConfiguration abstract
[<AbstractClassAttribute>]
type ProcedureConfiguration = class end
public abstract class ProcedureConfiguration
The ProcedureConfiguration type exposes the following members.
Constructors
Name | Description | |
---|---|---|
ProcedureConfiguration | Initializes a new instance of the ProcedureConfiguration class. |
Top
Properties
Name | Description | |
---|---|---|
ContainerQualifiedName | Gets the qualified name of the procedure when used in OData urls. Qualification is required to distinguish the procedure from other possible single part identifiers. | |
EntitySet | Gets or sets the EntitySet that entities are returned from. | |
FullName | Gets the FullName that is the ContainerQualifiedName. | |
FullyQualifiedName | Gets the FullyQualifiedName is the ContainerQualifiedName further qualified using the Namespace. Typically this is not required, because most services have at most one container with the same name. | |
IsAlwaysBindable | If the procedure IsBindable is it Always bindable. | |
IsBindable | Can the procedure be bound to a url representing the BindingParameter. | |
IsComposable | Can the procedure be composed upon. For example can a URL that invokes the procedure be used as the base url for a request that invokes the procedure and does something else with the results. | |
IsSideEffecting | Does the procedure have side-effects. | |
Kind | Gets the Kind of procedure, which can be either Action, Function or ServiceOperation. | |
ModelBuilder | Gets or sets the associated ODataModelBuilder. | |
Name | Gets or sets the Name of the procedure. | |
Parameters | Gets the parameters the procedure takes. | |
ReturnType | Gets or sets the type returned when the procedure is invoked. |
Top
Methods
Name | Description | |
---|---|---|
Equals | (Inherited from Object.) | |
Finalize | (Inherited from Object.) | |
GetHashCode | (Inherited from Object.) | |
GetType | (Inherited from Object.) | |
MemberwiseClone | (Inherited from Object.) | |
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.