REST operation metadata object.
Members
Name | Description | |
---|---|---|
Name | Operation name. Used in IRESTRequestHandler's schema generation and url parsing. | |
Name | Operation name. Used in IRESTRequestHandler's schema generation and url parsing. | |
OutputFormats | Supported output formats, separated by comma. | |
OutputFormats | Supported output formats, separated by comma. | |
Parameters | Operation parameters, separated by comma. | |
Parameters | Operation parameters, separated by comma. | |
PostOnly | Denotes POST-only operations. | |
PostOnly | Denotes POST-only operations. | |
RequiredCapability | Required capability for the operation. | |
RequiredCapability | Required capability for the operation. | |
ToJSONObject | Converts operation object to JSON representation. |
IRESTOperation.Name Property
Operation name. Used in IRESTRequestHandler's schema generation and url parsing.
Public Property Name As String
public string Name {get; set;}
IRESTOperation.Name Property
Operation name. Used in IRESTRequestHandler's schema generation and url parsing.
Public Property Name As String
public string Name {get; set;}
IRESTOperation.OutputFormats Property
Supported output formats, separated by comma.
Public Property OutputFormats As String
public string OutputFormats {get; set;}
IRESTOperation.OutputFormats Property
Supported output formats, separated by comma.
Public Property OutputFormats As String
public string OutputFormats {get; set;}
IRESTOperation.Parameters Property
Operation parameters, separated by comma.
Public Property Parameters As String
public string Parameters {get; set;}
IRESTOperation.Parameters Property
Operation parameters, separated by comma.
Public Property Parameters As String
public string Parameters {get; set;}
IRESTOperation.PostOnly Property
Denotes POST-only operations.
Public Property PostOnly As Boolean
public bool PostOnly {get; set;}
IRESTOperation.PostOnly Property
Denotes POST-only operations.
Public Property PostOnly As Boolean
public bool PostOnly {get; set;}
IRESTOperation.RequiredCapability Property
Required capability for the operation.
Public Property RequiredCapability As String
public string RequiredCapability {get; set;}
IRESTOperation.RequiredCapability Property
Required capability for the operation.
Public Property RequiredCapability As String
public string RequiredCapability {get; set;}
IRESTOperation.ToJSONObject Method
Converts operation object to JSON representation.
Public Function ToJSONObject ( _
) As IJSONObject
public IJSONObject ToJSONObject (
);
Classes that implement IRESTOperation
Classes | Description |
---|---|
CoRESTOperation | IRESTOperation coclass |