PrivateObject.GetProperty Method (String, BindingFlags, array<Type[], array<Object )

Gets an indexed property for a wrapped object identified by name.

Namespace:  Microsoft.VisualStudio.TestTools.UnitTesting
Assembly:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)

Syntax

'Declaration
Public Function GetProperty ( _
    name As String, _
    bindingFlags As BindingFlags, _
    parameterTypes As Type(), _
    args As Object() _
) As Object
public Object GetProperty(
    string name,
    BindingFlags bindingFlags,
    Type[] parameterTypes,
    Object[] args
)
public:
Object^ GetProperty(
    String^ name, 
    BindingFlags bindingFlags, 
    array<Type^>^ parameterTypes, 
    array<Object^>^ args
)
member GetProperty : 
        name:string * 
        bindingFlags:BindingFlags * 
        parameterTypes:Type[] * 
        args:Object[] -> Object
public function GetProperty(
    name : String, 
    bindingFlags : BindingFlags, 
    parameterTypes : Type[], 
    args : Object[]
) : Object

Parameters

  • name
    Type: String

    The name of property to get.

  • bindingFlags
    Type: BindingFlags
  • parameterTypes
    Type: array<Type[]

    An array of Type objects that represents the number, order, and type of the parameters for the indexed property to get.

  • args
    Type: array<Object[]

    An array that contains the arguments to pass to the member to invoke.

Return Value

Type: Object
An object that contains the value of the property identified by name.

Exceptions

Exception Condition
ArgumentException

name is nulla null reference (Nothing in Visual Basic) or empty.

.NET Framework Security

See Also

Reference

PrivateObject Class

GetProperty Overload

Microsoft.VisualStudio.TestTools.UnitTesting Namespace