This delegate method is called when an NSSound instance has completed playback of its sound data.
Original signature is '- (void)sound:(NSSound *)sound didFinishPlaying:(BOOL)finishedPlaying'
Available in Mac OS X v10.0 and later.

Declaration Syntax
public delegate void SoundDidFinishPlayingEventHandler(
NSSound sound,
bool finishedPlaying
)
Public Delegate Sub SoundDidFinishPlayingEventHandler ( _
sound As NSSound, _
finishedPlaying As Boolean _
)
public delegate void SoundDidFinishPlayingEventHandler(
NSSound^ sound,
bool finishedPlaying
)

Parameters
- sound (NSSound)
- The NSSound that has completed playback of its sound data.
- finishedPlaying (Boolean)
- YES when playback was successful; NO otherwise.

Version Information
- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)
Assembly:
Monobjc.AppKit (Module: Monobjc.AppKit)