Propriedade IParamInfo.Attribute
Obtém ou define um ponteiro para um eParamAttr valor que especifica o tipo de um parâmetro de atributo.
Namespace: Microsoft.VisualStudio.VsWizard
Assembly: Microsoft.VisualStudio.VsWizard (em Microsoft.VisualStudio.VsWizard.dll)
Sintaxe
'Declaração
Property Attribute As eParamAttr
eParamAttr Attribute { get; set; }
property eParamAttr Attribute {
eParamAttr get ();
void set (eParamAttr value);
}
abstract Attribute : eParamAttr with get, set
function get Attribute () : eParamAttr
function set Attribute (value : eParamAttr)
Valor de propriedade
Tipo: Microsoft.VisualStudio.VsWizard.eParamAttr
A eParamAttr value
Comentários
Se o tipo do parâmetro retornado pela propriedade atributo for eparamOutRetval, especificar que o parâmetro deve ser o último parâmetro na função.
Exemplos
// In this example, oInterface is the interface
// containing the function and its parameters.
var iRetVal = 0;
var oFunctions = oInterface.Functions;
var oFunction = oFunctions.Item(iFunction)
var oParameters = oFunction.Parameters;
var cDISPPARAMS = oParameters.Count;
var oParameter = oParameters.Item(cDISPPARAMS);
if (oParameter.Attribute == eparamOutRetval)
{
// retval must be last.
iRetVal = cDISPPARAMS;
cDISPPARAMS--;
}
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.