Class ControllerDefinition
Contains all properties that are required for defining a web api 2 controlelr
Inheritance
System.Object
ControllerDefinition
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: Simplic.CXUI.WebApi2
Assembly: Simplic.CXUI.WebApi2.dll
Syntax
public class ControllerDefinition
Properties
| Improve this Doc View SourceActions
Gets or sets a list of actions
Declaration
public IList<ActionDefinition> Actions { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<ActionDefinition> |
Attributes
Gets or sets a list of attributes
Declaration
public IList<AttributeDefinition> Attributes { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<AttributeDefinition> |
Base
Gets or sets the base class of the controlelr
Declaration
public string Base { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
Gets or sets the controller name
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Namespace
Gets or sets the namespace of the controller
Declaration
public string Namespace { get; set; }
Property Value
Type | Description |
---|---|
System.String |
SecurityAttribute
Gets or sets the usage of a security attribute
Declaration
public SecurityAttributeDefinition SecurityAttribute { get; set; }
Property Value
Type | Description |
---|---|
SecurityAttributeDefinition |