Show / Hide Table of Contents

Interface IPropertyInfo

Describes property info interface for binding of property

Namespace: EmptyKeys.UserInterface.Data
Assembly: EmptyKeys.UserInterface.dll
Syntax
public interface IPropertyInfo

Properties

IsResolved

Gets a value indicating whether this instance is resolved.

Declaration
bool IsResolved { get; }
Property Value
Type Description
System.Boolean

true if this instance is resolved; otherwise, false.

PropertyType

Gets the type of the property.

Declaration
Type PropertyType { get; }
Property Value
Type Description
System.Type

The type of the property.

Methods

GetValue(Object)

Gets the value.

Declaration
object GetValue(object obj)
Parameters
Type Name Description
System.Object obj

The object.

Returns
Type Description
System.Object

GetValue(Object, Object[])

Gets the value.

Declaration
object GetValue(object obj, object[] index)
Parameters
Type Name Description
System.Object obj

The object.

System.Object[] index

The index.

Returns
Type Description
System.Object

SetValue(Object, Object)

Sets the value.

Declaration
void SetValue(object obj, object value)
Parameters
Type Name Description
System.Object obj

The object.

System.Object value

The value.

SetValue(Object, Object, Object[])

Sets the value.

Declaration
void SetValue(object obj, object value, object[] index)
Parameters
Type Name Description
System.Object obj

The object.

System.Object value

The value.

System.Object[] index

The index.

Back to top Generated by DocFX