PrivateObject::Invoke Method (String^, BindingFlags, array<Object^>^)
Used to access the members of the private object.
Assembly: Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
public: Object^ Invoke( String^ name, BindingFlags bindingFlags, ... array<Object^>^ args )
Parameters
- name
-
Type:
System::String^
The name of the member to invoke.
- invokeAttr
A bitmask comprised of one or more BindingFlags that specifies how the search for the member is conducted. The type of lookup need not be specified.
- args
-
Type:
array<System::Object^>^
Any arguments that the member requires.
If the private member does not return a reference or value, then this method will not return an object.
You might want your test to decide at runtime which method to invoke. To do this, you can use BindingFlags with the invokeAttr parameter. This lets you search for a type with a specific name or by using modifiers such as static, public, internal, and private, or combinations of modifiers. You can use a set of binding flags to find the method that you want to invoke.