Class AbstractAttributeAccessor
Inheritance
System.Object
AbstractAttributeAccessor
Assembly: Steeltoe.Common.dll
Syntax
public abstract class AbstractAttributeAccessor : object, IAttributeAccessor
Properties
|
Edit this page
View Source
AttributeNames
Declaration
public virtual string[] AttributeNames { get; }
Property Value
Type |
Description |
System.String[] |
|
Methods
|
Edit this page
View Source
CopyAttributesFrom(IAttributeAccessor)
Declaration
protected virtual void CopyAttributesFrom(IAttributeAccessor source)
Parameters
|
Edit this page
View Source
Equals(Object)
Declaration
public override bool Equals(object other)
Parameters
Type |
Name |
Description |
System.Object |
other |
|
Returns
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
GetAttribute(String)
Declaration
public virtual object GetAttribute(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Object |
|
|
Edit this page
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Type |
Description |
System.Int32 |
|
|
Edit this page
View Source
HasAttribute(String)
Declaration
public virtual bool HasAttribute(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
RemoveAttribute(String)
Declaration
public virtual 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
public virtual void SetAttribute(string name, object value)
Parameters
Type |
Name |
Description |
System.String |
name |
|
System.Object |
value |
|
Implements