Share via


Windows Media Player 11 SDK AxWindowsMediaPlayer.LibraryDisconnect Event (VB and C#) 

Windows Media Player SDK banner art

Previous Next

AxWindowsMediaPlayer.LibraryDisconnect Event (VB and C#)

The LibraryDisconnect event occurs when a library is no longer available.

[Visual Basic]
Private Sub player_LibraryDisconnect(
  sender As Object,
  e As _WMPOCXEvents_LibraryDisconnectEvent
) Handles player.LibraryDisconnect

[C#]

Event Data

The handler associated with this event is of type AxWMPLib._WMPOCXEvents_LibraryDisconnectEventHandler. This handler receives an argument of type AxWMPLib._WMPOCXEvents_LibraryDisconnectEvent, which contains the following property related to this event.

Property Description
pLibrary WMPLib.IWMPLibrary

The interface that represents the library that disconnected.

Remarks

This event does not occur for the local library.

Requirements

Version: Windows Media Player 11.

Namespace: AxWMPLib

Assembly: AxInterop.WMPLib.dll (automatically generated by Visual Studio)

See Also

Previous Next