Compartir a través de


PrivateObject.SetProperty (Método) (String, array<Type[], Object, array<Object[])

Establece una propiedad indizada para un objeto ajustado identificado por su nombre.

Espacio de nombres:  Microsoft.VisualStudio.TestTools.UnitTesting
Ensamblado:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (en Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)

Sintaxis

'Declaración
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[]
)

Parámetros

  • name
    Tipo: String

    El nombre de la propiedad que se va a invocar.

  • parameterTypes
    Tipo: array<Type[]

    Una matriz de objetos Type que representa el número, orden y tipo de los parámetros que obtiene la propiedad indizada.

  • value
    Tipo: Object

    El valor para establecer la propiedad identificada por name.

  • args
    Tipo: array<Object[]

    Matriz que contiene los argumentos que se van a pasar a la propiedad que se va a invocar.

Excepciones

Excepción Condición
ArgumentException

El valor de name es nullreferencia null (Nothing en Visual Basic) o está vacío.

Seguridad de .NET Framework

Vea también

Referencia

PrivateObject Clase

SetProperty (Sobrecarga)

Microsoft.VisualStudio.TestTools.UnitTesting (Espacio de nombres)