Class HttpAction
An action that can be performed on the given static object.
Inheritance
Inherited Members
Namespace: Relativity.Testing.Framework.Models
Assembly: Relativity.Testing.Framework.dll
Syntax
public class HttpAction
Constructors
| Improve this Doc View SourceHttpAction()
Initializes a new instance of the HttpAction class.
Declaration
public HttpAction()
Properties
| Improve this Doc View SourceHref
Gets or sets the url for the Kepler service that performs this action.
Declaration
public string Href { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsAvailable
Gets or sets a value indicating whether or not the action is available on the given static object.
Declaration
public bool IsAvailable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Gets or sets the action the user has permission to perform on the given static object.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
For example, "Delete" means this object can be deleted, "Update" means this object can be updated.
Reason
Gets or sets reasons the action may not be available.
Declaration
public List<string> Reason { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
Remarks
For example, the given static object may not be available for update or deletion because it is part of a locked application.
Verb
Gets or sets the HTTP verb to use when calling the Kepler service to perform the action.
Declaration
public string Verb { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
For example, "DELETE" to delete the object, "PUT" to update the object.