Modifier

IActivationObject.GetMemberValue(String, Int32) Method

Definition

When implemented in a class, gets the value of the specified member by searching the scope hierarchy. This method searches only the scope that is specified by the lexical level.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 System::Object ^ GetMemberValue(System::String ^ name, int lexlevel);
public object GetMemberValue (string name, int lexlevel);
abstract member GetMemberValue : string * int -> obj
Public Function GetMemberValue (name As String, lexlevel As Integer) As Object

Parameters

name
String

The name of the member to search for.

lexlevel
Int32

The lexical level to search.

Returns

The value of the member name.

Remarks

This method applies to members that cannot be resolved at compile time. This occurs when an eval expression refers to a member in the outer scope. Because the eval expression can declare a local member with the same name, the member cannot be early bound to the outer scope member.

Applies to

See also