PrivateObject.SetProperty, méthode (String, Object, array<Object )
Définit une propriété 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, _
value As Object, _
ParamArray args As Object() _
)
public void SetProperty(
string name,
Object value,
params Object[] args
)
public:
void SetProperty(
String^ name,
Object^ value,
... array<Object^>^ args
)
member SetProperty :
name:string *
value:Object *
args:Object[] -> unit
public function SetProperty(
name : String,
value : Object,
... args : Object[]
)
Paramètres
- name
Type : System.String
Nom de la propriété à appeler.
- value
Type : System.Object
Valeur définissant la propriété identifiée par name.
- args
Type : array<System.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, consultez 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