Hinzufügen einer Komponente
Das Netzwerkkonfigurationssubsystem kann ein Notify-Objekt informieren, wenn das Subsystem Netzwerkkomponenten hinzufügt. Nach der Initialisierung eines Notify-Objekts ruft das Subsystem die INetCfgComponentNotifyGlobal::GetSupportedNotifications-Methode des Notify-Objekts auf, um die typen von Benachrichtigungen abzurufen, die für das Objekt erforderlich sind. Wenn das Notify-Objekt angegeben hat, dass eine Benachrichtigung erforderlich ist, wenn Netzwerkkomponenten hinzugefügt werden, ruft das Subsystem die INetCfgComponentNotifyGlobal::SysNotifyComponent-Methode des Notify-Objekts auf und übergibt NCN_ADD, um das Notify-Objekt darüber zu informieren, dass das Subsystem eine Netzwerkkomponente installiert hat. Wenn die Komponente, die das Notify-Objekt besitzt, an die angegebene Komponente gebunden werden soll, sollte das Notify-Objekt Vorgänge ausführen, um die Bindung zu vereinfachen. Der folgende Code zeigt beispielsweise, wie das Notify-Objekt seine Komponente an die angegebene Komponente binden kann, wenn die angegebene Komponente ein erforderliches physisches Netzwerk Karte ist.
HRESULT CSample::SysNotifyComponent(DWORD dwChangeFlag,
INetCfgComponent* pnccItem)
{
HRESULT hr = S_OK;
INetCfgComponentBindings *pncfgcompbind;
// Retrieve bindings for the notify object's component (m_pncc)
hr = m_pncc->QueryInterface(IID_INetCfgComponentBindings,
(LPVOID*)&pncfgcompbind);
// Determine if notification is about adding a component
if (SUCCEEDED(hr) && (NCN_ADD & dwChangeFlag)) {
// Retrieve the characteristics of the added component
DWORD dwcc;
hr = pnccItem->GetCharacteristics(&dwcc);
// Determine if the added component is a physical adapter
if (SUCCEEDED(hr) && (dwcc & NCF_PHYSICAL)) {
// Determine the component's ID
LPWSTR pszwInfId;
hr = pnccItem->GetId(&pszwInfId);
if (SUCCEEDED(hr)) {
// Compare the component's ID to the required ID
// and if they are the same perform the binding.
static const TCHAR c_szCompId[] = TEXT("BINDTO_NIC");
if (!_tcsicmp(pszwInfId, c_szCompId)) {
hr = pncfgcompbind->BindTo(pnccItem);
}
}
}
}
return hr;
}