共用方式為


IInterfaceInfo.IsDispatchable 屬性

取得值,指出介面是否衍生自 IDispatch

命名空間:  Microsoft.VisualStudio.VsWizard
組件:  Microsoft.VisualStudio.VsWizard (在 Microsoft.VisualStudio.VsWizard.dll 中)

語法

'宣告
ReadOnly Property IsDispatchable As Boolean
bool IsDispatchable { get; }
property bool IsDispatchable {
    bool get ();
}
abstract IsDispatchable : bool with get
function get IsDispatchable () : boolean

屬性值

類型:Boolean
如果介面衍生自 IDispatch,則為 true,否則為 false。

範例

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

.NET Framework 安全性

請參閱

參考

IInterfaceInfo 介面

Microsoft.VisualStudio.VsWizard 命名空間