PrivateType.GetStaticProperty Method (String, BindingFlags, array<Type[], array<Object )

Gets a static indexed property contained in the wrapped type.

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

Syntax

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

Parameters

  • name
    Type: String

    The name of the static property.

  • 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.

    -or-

    An empty array of the type Type (that is, Type[] types = new Type[0]) to get a property that is not indexed.

  • args
    Type: array<Object[]

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

Return Value

Type: Object
An object that represents the value of the static indexed property.

.NET Framework Security

See Also

Reference

PrivateType Class

GetStaticProperty Overload

Microsoft.VisualStudio.TestTools.UnitTesting Namespace