PeerCastStation.WPF.ChannelLists.Dialogs.BroadcastViewModel.CanBroadcast C# (CSharp) Méthode

CanBroadcast() private méthode

private CanBroadcast ( Uri streamSource, IContentReaderFactory contentReaderFactory, string channelName ) : bool
streamSource System.Uri
contentReaderFactory IContentReaderFactory
channelName string
Résultat bool
    private bool CanBroadcast(Uri streamSource, IContentReaderFactory contentReaderFactory, string channelName)
    {
      return streamSource != null
        && contentReaderFactory != null
        && !String.IsNullOrEmpty(channelName);
    }