PeerCastStation.WPF.BroadcastInfoViewModel.Save C# (CSharp) Méthode

Save() public méthode

public Save ( ) : PeerCastStation.UI.BroadcastInfo
Résultat PeerCastStation.UI.BroadcastInfo
    public PeerCastStation.UI.BroadcastInfo Save()
    {
      return new PeerCastStation.UI.BroadcastInfo() {
        StreamType  = this.StreamType,
        StreamUrl   = this.StreamUrl,
        Bitrate     = this.Bitrate,
        ContentType = this.ContentType,
        YellowPage  = this.YellowPage,
        ChannelName = this.ChannelName,
        Genre       = this.Genre,
        Description = this.Description,
        Comment     = this.Comment,
        ContactUrl  = this.ContactUrl,
        TrackTitle  = this.TrackTitle,
        TrackAlbum  = this.TrackAlbum,
        TrackArtist = this.TrackArtist,
        TrackGenre  = this.TrackGenre,
        TrackUrl    = this.TrackUrl,
        Favorite    = this.Favorite,
      };
    }