Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Gets a 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, _
parameterTypes As Type(), _
args As Object() _
) As Object
public Object GetProperty(
string name,
Type[] parameterTypes,
Object[] args
)
public:
Object^ GetProperty(
String^ name,
array<Type^>^ parameterTypes,
array<Object^>^ args
)
member GetProperty :
name:string *
parameterTypes:Type[] *
args:Object[] -> Object
public function GetProperty(
name : String,
parameterTypes : Type[],
args : Object[]
) : Object
Parameters
name
Type: StringThe name of property to get.
parameterTypes
Type: array<Type[]An array of Type objects representing 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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.