ParameterAttribute.CaptureUnmatchedValues Propiedad

Definición

Obtiene o establece un valor que determina si el parámetro capturará valores que no coincidan con ningún otro parámetro.

public:
 property bool CaptureUnmatchedValues { bool get(); void set(bool value); };
public bool CaptureUnmatchedValues { get; set; }
member this.CaptureUnmatchedValues : bool with get, set
Public Property CaptureUnmatchedValues As Boolean

Valor de propiedad

Comentarios

CaptureUnmatchedValues permite a un componente aceptar atributos adicionales arbitrarios y pasarlos a otro componente o a algún elemento del marcado subyacente.

CaptureUnmatchedValues se puede usar como máximo en un parámetro por componente.

CaptureUnmatchedValues solo se debe aplicar a los parámetros de un tipo que se puede usar con AddMultipleAttributes(Int32, IEnumerable<KeyValuePair<String,Object>>) , como Dictionary<TKey,TValue>.

Se aplica a