IOpcNodeMemberInfo Members

Namespace: Opc.UaFx
Assemblies: Opc.UaFx.Advanced.dll, Opc.UaFx.Advanced.dll
The IOpcNodeMemberInfo interface defines the following members.

DeclaringType

Gets the type that declares the current IOpcNodeMemberInfo.

C#

IOpcNodeTypeInfo DeclaringType { get; }


Property Value

IOpcNodeTypeInfo

The IOpcNodeTypeInfo which declares the current IOpcNodeMemberInfo.

MemberType

Gets the type of value this member provides.

C#

IOpcNodeTypeInfo MemberType { get; }


Property Value

IOpcNodeTypeInfo

The IOpcNodeTypeInfo representing the type of value this member provides.

ReflectedType

Gets the type that was used to obtain this instance of IOpcNodeMemberInfo.

C#

IOpcNodeTypeInfo ReflectedType { get; }


Property Value

IOpcNodeTypeInfo

An IOpcNodeTypeInfo object used to obtain this instance.

GetValue(object)

Gets the value of the member supported by the given object instance.

C#

object GetValue(object instance)


Parameters

instance Object

The Object whose member value will be returned.


Returns

Object

An object containing the value of the member reflected by this instance.

SetValue(object, object)

Sets the value of the member supported by the given object instance.

C#

void SetValue(object instance, object value)


Parameters

instance Object

The Object whose member value will be set.

value Object

The value to assign to the member.