Interface IPropertyAccessor
Assembly: Steeltoe.Common.Abstractions.dll
Syntax
public interface IPropertyAccessor
Methods
|
Edit this page
View Source
CanRead(IEvaluationContext, Object, String)
Declaration
bool CanRead(IEvaluationContext context, object target, string name)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
CanWrite(IEvaluationContext, Object, String)
Declaration
bool CanWrite(IEvaluationContext context, object target, string name)
Parameters
Returns
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
GetSpecificTargetClasses()
Declaration
IList<Type> GetSpecificTargetClasses()
Returns
Type |
Description |
IList<Type> |
|
|
Edit this page
View Source
Read(IEvaluationContext, Object, String)
Declaration
ITypedValue Read(IEvaluationContext context, object target, string name)
Parameters
Returns
|
Edit this page
View Source
Write(IEvaluationContext, Object, String, Object)
Declaration
void Write(IEvaluationContext context, object target, string name, object newValue)
Parameters
Type |
Name |
Description |
IEvaluationContext |
context |
|
System.Object |
target |
|
System.String |
name |
|
System.Object |
newValue |
|