Show / Hide Table of Contents

Class HttpAction

An action that can be performed on the given static object.

Inheritance
System.Object
HttpAction
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Relativity.Testing.Framework.Models
Assembly: Relativity.Testing.Framework.dll
Syntax
public class HttpAction

Constructors

| Improve this Doc View Source

HttpAction()

Initializes a new instance of the HttpAction class.

Declaration
public HttpAction()

Properties

| Improve this Doc View Source

Href

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
| Improve this Doc View Source

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
| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX