Interface IAttributeAccessor
Assembly: Steeltoe.Common.Abstractions.dll
Syntax
public interface IAttributeAccessor
Properties
|
Edit this page
View Source
AttributeNames
Declaration
string[] AttributeNames { get; }
Property Value
Type |
Description |
System.String[] |
|
Methods
|
Edit this page
View Source
GetAttribute(String)
Declaration
object GetAttribute(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Object |
|
|
Edit this page
View Source
HasAttribute(String)
Declaration
bool HasAttribute(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
RemoveAttribute(String)
Declaration
object RemoveAttribute(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Object |
|
|
Edit this page
View Source
SetAttribute(String, Object)
Declaration
void SetAttribute(string name, object value)
Parameters
Type |
Name |
Description |
System.String |
name |
|
System.Object |
value |
|