Class AbstractDeclarable
Inheritance
System.Object
AbstractDeclarable
Assembly: Steeltoe.Messaging.RabbitMQ.dll
Syntax
public abstract class AbstractDeclarable : object, IDeclarable
Constructors
|
Edit this page
View Source
AbstractDeclarable(Dictionary<String, Object>)
Declaration
protected AbstractDeclarable(Dictionary<string, object> arguments)
Parameters
Type |
Name |
Description |
Dictionary<System.String, System.Object> |
arguments |
|
Fields
|
Edit this page
View Source
_declaringAdmins
Declaration
protected List<object> _declaringAdmins
Field Value
Type |
Description |
List<System.Object> |
|
Properties
|
Edit this page
View Source
Arguments
Declaration
public Dictionary<string, object> Arguments { get; set; }
Property Value
Type |
Description |
Dictionary<System.String, System.Object> |
|
|
Edit this page
View Source
DeclaringAdmins
Declaration
public List<object> DeclaringAdmins { get; set; }
Property Value
Type |
Description |
List<System.Object> |
|
|
Edit this page
View Source
IgnoreDeclarationExceptions
Declaration
public bool IgnoreDeclarationExceptions { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
ShouldDeclare
Declaration
public bool ShouldDeclare { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Methods
|
Edit this page
View Source
AddArgument(String, Object)
Declaration
public void AddArgument(string name, object value)
Parameters
Type |
Name |
Description |
System.String |
name |
|
System.Object |
value |
|
|
Edit this page
View Source
RemoveArgument(String)
Declaration
public object RemoveArgument(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Object |
|
|
Edit this page
View Source
SetAdminsThatShouldDeclare(Object[])
Declaration
public virtual void SetAdminsThatShouldDeclare(params object[] adminArgs)
Parameters
Type |
Name |
Description |
System.Object[] |
adminArgs |
|
Implements