PrivateObject.SetProperty, méthode (String, array<Type[], Object, array<Object[])
Définit une propriété indexée pour un objet encapsulé identifié par nom.
Espace de noms : Microsoft.VisualStudio.TestTools.UnitTesting
Assembly : Microsoft.VisualStudio.QualityTools.UnitTestFramework (dans Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
Syntaxe
'Déclaration
Public Sub SetProperty ( _
name As String, _
parameterTypes As Type(), _
value As Object, _
args As Object() _
)
public void SetProperty(
string name,
Type[] parameterTypes,
Object value,
Object[] args
)
public:
void SetProperty(
String^ name,
array<Type^>^ parameterTypes,
Object^ value,
array<Object^>^ args
)
member SetProperty :
name:string *
parameterTypes:Type[] *
value:Object *
args:Object[] -> unit
public function SetProperty(
name : String,
parameterTypes : Type[],
value : Object,
args : Object[]
)
Paramètres
name
Type : StringNom de la propriété à appeler.
parameterTypes
Type : array<Type[]Tableau d'objets Type qui représente le nombre, l'ordre et le type des paramètres de la propriété indexée à obtenir.
value
Type : ObjectValeur définissant la propriété identifiée par name.
args
Type : array<Object[]Tableau qui contient les arguments à passer à la propriété à appeler.
Exceptions
Exception | Condition |
---|---|
ArgumentException | name est nullune référence null (Nothing en Visual Basic) ou vide. |
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.
Voir aussi
Référence
Microsoft.VisualStudio.TestTools.UnitTesting, espace de noms