Partager via


IInterfaceInfo.IsDispatchable, propriété

Obtient une valeur indiquant si l'interface est dérivée d'IDispatch.

Espace de noms :  Microsoft.VisualStudio.VsWizard
Assembly :  Microsoft.VisualStudio.VsWizard (dans Microsoft.VisualStudio.VsWizard.dll)

Syntaxe

'Déclaration
ReadOnly Property IsDispatchable As Boolean
bool IsDispatchable { get; }
property bool IsDispatchable {
    bool get ();
}
abstract IsDispatchable : bool with get
function get IsDispatchable () : boolean

Valeur de propriété

Type : System.Boolean
true si l'interface est dérivée d'IDispatch ; sinon, false.

Exemples

// 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;
   }
}

Sécurité .NET Framework

Voir aussi

Référence

IInterfaceInfo Interface

Microsoft.VisualStudio.VsWizard, espace de noms