IWMPPlaylist.isIdentical (VB and C#)

[The feature associated with this page, Windows Media Player SDK, is a legacy feature. It has been superseded by MediaPlayer. MediaPlayer has been optimized for Windows 10 and Windows 11. Microsoft strongly recommends that new code use MediaPlayer instead of Windows Media Player SDK, when possible. Microsoft suggests that existing code that uses the legacy APIs be rewritten to use the new APIs if possible.]

The isIdentical property (the get_isIdentical method in C#) gets a value indicating whether the specified playlist is identical to the current playlist.

[Visual Basic]
ReadOnly Property isIdentical(
  pIWMPPlaylist As IWMPPlaylist
) As System.Boolean
[C#]
System.Boolean get_isIdentical (
  IWMPPlaylist pIWMPPlaylist
);

Parameters

pIWMPPlaylist

A WMPLib.IWMPPlaylist Interface for the playlist that this method compares to the current playlist.

Property Value

A System.Boolean that indicates whether the compared playlists are identical.

Remarks

IWMPPlaylist.isIdentical is a property in Visual Basic that takes a parameter, while in C# it is referred to as the IWMPPlaylist.get_isIdentical method.

Requirements

Requirement Value
Version
Windows Media Player 9 Series or later
Namespace
WMPLib
Assembly
Interop.WMPLib.dll (Interop.WMPLib.dll.dll)

See also

IWMPPlaylist Interface (VB and C#)