ODataUtils.GetHttpMethod Method
Checks whether the annotatable has an HttpMethod annotation.
Namespace: Microsoft.Data.OData
Assembly: Microsoft.Data.OData (in Microsoft.Data.OData.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function GetHttpMethod ( _
model As IEdmModel, _
annotatable As IEdmElement _
) As String
'Usage
Dim model As IEdmModel
Dim annotatable As IEdmElement
Dim returnValue As String
returnValue = model.GetHttpMethod(annotatable)
public static string GetHttpMethod(
this IEdmModel model,
IEdmElement annotatable
)
[ExtensionAttribute]
public:
static String^ GetHttpMethod(
IEdmModel^ model,
IEdmElement^ annotatable
)
static member GetHttpMethod :
model:IEdmModel *
annotatable:IEdmElement -> string
public static function GetHttpMethod(
model : IEdmModel,
annotatable : IEdmElement
) : String
Parameters
- model
Type: Microsoft.Data.Edm.IEdmModel
The IEdmModel containing the annotation.
- annotatable
Type: Microsoft.Data.Edm.IEdmElement
The IEdmElement to check.
Return Value
Type: System.String
The (non-null) value of the HttpMethod annotation of the annotatable or null if no such annotation exists.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEdmModel. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.103) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).