Propriedade IInterfaceInfo.IsDispatchable
Obtém um valor indicando se a interface é derivada de IDispatch.
Namespace: Microsoft.VisualStudio.VsWizard
Assembly: Microsoft.VisualStudio.VsWizard (em Microsoft.VisualStudio.VsWizard.dll)
Sintaxe
'Declaração
ReadOnly Property IsDispatchable As Boolean
bool IsDispatchable { get; }
property bool IsDispatchable {
bool get ();
}
abstract IsDispatchable : bool with get
function get IsDispatchable () : boolean
Valor de propriedade
Tipo: System.Boolean
true Se a interface é derivada de IDispatch; Caso contrário, false.
Exemplos
// From the Visual C++ Implement Interface wizard
function IsCustomInterface(nSource, oInterface)
{
if (nSource == g_nSourceCodeModel)
{
var oBases = oInterface.Bases;
var cBases = oBases.Count;
if (!cBases)
{
return false;
}
else
{
oBase = oBases.Item(1);
if (oBase.Name == "IDispatch")
{
return false;
}
else
{
var oBaseInterface = oBase.Class;
if (oBaseInterface)
{
return IsCustomInterface(nSource, oBaseInterface);
}
}
}
}
else
{
return oInterface.Type == einterfaceCustom && oInterface.IsDispatchable == false;
}
}
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.