/// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action <PlaybackDevice> action) => MessageRegistration.Register(action, typeof(PlaybackDeviceAvailableMessage));
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action <int> action) => MessageRegistration.Register(action, typeof(SelectedLibraryChangedMessage));
示例#3
0
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action <Song, bool> action) => MessageRegistration.Register(action, typeof(PlaySongMessage));
示例#4
0
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action action) => MessageRegistration.Register(action, typeof(MediaControlPlayPreviousMessage));
示例#5
0
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action <Album> action) => MessageRegistration.Register(action, typeof(AlbumPlayedStateChangedMessage));
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action <bool> action) => MessageRegistration.Register(action, typeof(MediaPlayingMessage));
示例#7
0
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action <Tag> action) => MessageRegistration.Register(action, typeof(TagDeletedMessage));
示例#8
0
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action action) => MessageRegistration.Register(action, typeof(ShuffleModeChangedMessage));
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action <int> action) => MessageRegistration.Register(action, typeof(MediaControlSeekToMessage));
示例#10
0
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action action) => MessageRegistration.Register(action, typeof(PlaybackModelChangedMessage));
示例#11
0
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action <Song> action) => MessageRegistration.Register(action, typeof(SongStartedMessage));
示例#12
0
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action action) => MessageRegistration.Register(action, typeof(StorageDataAvailableMessage));
示例#13
0
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action <Playlist> action) => MessageRegistration.Register(action, typeof(PlaylistUpdatedMessage));
示例#14
0
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action <List <string> > action) => MessageRegistration.Register(action, typeof(TagMembershipChangedMessage));
示例#15
0
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action action) => MessageRegistration.Register(action, typeof(SongSelectedMessage));
示例#16
0
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action <List <int> > action) => MessageRegistration.Register(action, typeof(AlbumsDeletedMessage));
示例#17
0
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action action) => MessageRegistration.Register(action, typeof(MediaControlStartMessage));
示例#18
0
 /// <summary>
 /// Provide a static Register method in order to check the provided action at compile time
 /// </summary>
 /// <param name="action"></param>
 public static void Register(Action <int, int> action) => MessageRegistration.Register(action, typeof(MediaProgressMessage));