Table of Contents

Interface IMemberAccessor

Namespace
FluentCommand.Reflection
Assembly
FluentCommand.dll

An interface for late binding member accessors.

public interface IMemberAccessor : IMemberInformation
Inherited Members

Methods

GetValue(object)

Returns the value of the member.

object GetValue(object instance)

Parameters

instance object

The instance whose member value will be returned.

Returns

object

The member value for the instance parameter.

SetValue(object, object)

Sets the value of the member.

void SetValue(object instance, object value)

Parameters

instance object

The instance whose member value will be set.

value object

The new value for this member.