Class AbstractEndpointOptions
Inheritance
System.Object
AbstractEndpointOptions
Assembly: Steeltoe.Management.Abstractions.dll
Syntax
public abstract class AbstractEndpointOptions : object, IEndpointOptions
Constructors
|
Edit this page
View Source
AbstractEndpointOptions()
Declaration
public AbstractEndpointOptions()
|
Edit this page
View Source
AbstractEndpointOptions(String, IConfiguration)
Declaration
public AbstractEndpointOptions(string sectionName, IConfiguration config)
Parameters
Type |
Name |
Description |
System.String |
sectionName |
|
IConfiguration |
config |
|
Fields
|
Edit this page
View Source
_enabled
Declaration
Field Value
Type |
Description |
System.Nullable<System.Boolean> |
|
|
Edit this page
View Source
_path
Declaration
Field Value
Type |
Description |
System.String |
|
|
Edit this page
View Source
_sensitive
Declaration
protected bool? _sensitive
Field Value
Type |
Description |
System.Nullable<System.Boolean> |
|
Properties
|
Edit this page
View Source
AllowedVerbs
Declaration
public IEnumerable<string> AllowedVerbs { get; set; }
Property Value
Type |
Description |
IEnumerable<System.String> |
|
|
Edit this page
View Source
DefaultEnabled
Declaration
public virtual bool DefaultEnabled { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
Enabled
Declaration
public virtual bool? Enabled { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Boolean> |
|
|
Edit this page
View Source
ExactMatch
Declaration
public bool ExactMatch { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
Global
Declaration
public IManagementOptions Global { get; set; }
Property Value
|
Edit this page
View Source
Id
Declaration
public virtual string Id { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Edit this page
View Source
Path
Declaration
public virtual string Path { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Edit this page
View Source
RequiredPermissions
Declaration
public Permissions RequiredPermissions { get; set; }
Property Value
Methods
|
Edit this page
View Source
IsAccessAllowed(Permissions)
Declaration
public virtual bool IsAccessAllowed(Permissions permissions)
Parameters
Returns
Type |
Description |
System.Boolean |
|
Implements