本文整理汇总了C#中JMMServerBinary类的典型用法代码示例。如果您正苦于以下问题:C# JMMServerBinary类的具体用法?C# JMMServerBinary怎么用?C# JMMServerBinary使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
JMMServerBinary类属于命名空间,在下文中一共展示了JMMServerBinary类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FileFfdshowPresetVM
public FileFfdshowPresetVM(JMMServerBinary.Contract_FileFfdshowPreset contract)
{
this.FileFfdshowPresetID = contract.FileFfdshowPresetID;
this.Hash = contract.Hash;
this.FileSize = contract.FileSize;
this.Preset = contract.Preset;
}
示例2: Trakt_FriendVM
public Trakt_FriendVM(JMMServerBinary.Contract_Trakt_Friend contract)
{
WatchedEpisodes = new List<Trakt_WatchedEpisodeVM>();
this.Trakt_FriendID = contract.Trakt_FriendID;
this.Username = contract.Username;
this.Full_name = contract.Full_name;
this.Gender = contract.Gender;
this.Age = contract.Age;
this.Location = contract.Location;
this.About = contract.About;
this.Joined = contract.Joined;
this.JoinedDate = contract.JoinedDate;
this.Avatar = contract.Avatar;
//this.Avatar = "/Images/16_Refresh.png";
this.Url = contract.Url;
foreach (JMMServerBinary.Contract_Trakt_WatchedEpisode ep in contract.WatchedEpisodes)
WatchedEpisodes.Add(new Trakt_WatchedEpisodeVM(ep));
LastEpisodeWatched = null;
LastEpisodeWatchedDate = null;
if (WatchedEpisodes.Count > 0)
{
LastEpisodeWatched = WatchedEpisodes[0];
LastEpisodeWatchedDate = LastEpisodeWatched.WatchedDate;
}
}
示例3: MissingFileVM
public MissingFileVM(JMMServerBinary.Contract_MissingFile contract)
{
this.EpisodeID = contract.EpisodeID;
this.FileID = contract.FileID;
this.AnimeID = contract.AnimeID;
this.AnimeTitle = contract.AnimeTitle;
this.EpisodeNumber = contract.EpisodeNumber;
this.EpisodeType = contract.EpisodeType;
AnimeSeries = null;
if (contract.AnimeSeries != null) AnimeSeries = new AnimeSeriesVM(contract.AnimeSeries);
HasSeriesData = AnimeSeries != null;
string shortType = "";
switch (EpisodeTypeEnum)
{
case JMMClient.EpisodeType.Credits: shortType = "C"; break;
case JMMClient.EpisodeType.Episode: shortType = ""; break;
case JMMClient.EpisodeType.Other: shortType = "O"; break;
case JMMClient.EpisodeType.Parody: shortType = "P"; break;
case JMMClient.EpisodeType.Special: shortType = "S"; break;
case JMMClient.EpisodeType.Trailer: shortType = "T"; break;
}
EpisodeTypeAndNumber = string.Format("{0}{1}", shortType, EpisodeNumber);
}
示例4: Trakt_CommentVM
public Trakt_CommentVM(JMMServerBinary.Contract_Trakt_Comment contract)
{
this.CommentType = contract.CommentType;
this.Text = contract.Text;
this.Spoiler = contract.Spoiler;
this.Inserted = contract.Inserted;
this.Comment_Url = contract.Comment_Url;
this.Episode_Season = contract.Episode_Season;
this.Episode_Number = contract.Episode_Number;
this.Episode_Title = contract.Episode_Title;
if (!string.IsNullOrEmpty(Episode_Title) && Episode_Title.Length > 30)
Episode_Title = Episode_Title.Substring(0, 30) + "...";
this.Episode_Overview = contract.Episode_Overview;
this.Episode_Url = contract.Episode_Url;
this.Episode_Screenshot = contract.Episode_Screenshot;
this.AnimeSeriesID = contract.AnimeSeriesID;
if (contract.TraktShow != null)
this.TraktShow = new TraktTVShowResponseVM(contract.TraktShow);
if (contract.Anime != null)
this.Anime = new AniDB_AnimeVM(contract.Anime);
Console.Write(this.FullImagePath);
Console.Write(this.OnlineImagePath);
Console.Write(this.ImagePathForDisplay);
//this.Text = "Sora asks Haru to take her measurements so she can have a uniform made. The next day Nao comes over to bring Haruka some mosquito repellent, since Sora is scared of mosquitoes, and then leaves almost immediately. The next day Ryouhei invites Haruka to the school rooftop to take a peek at the girls cleaning the pool. Haruka warns Ryouhei, though, not to peek at Nao, and leaves. Much later Ryouhei tells Nao that Haruka, “the prince she has been waiting for,” has a crush on her; but she thinks he does not like her. The truth is that something happened between the two many summers ago: Nao, trying to escape the noise of her arguing parents, ran to Haruka's house. At that time Haruka was sleeping at their veranda, and was surprised to see Nao on top of him with her clothes undone. Until now Nao feels guilty for what she did. However, Ryouhei, even Akira and Kazuha, is into the act of bringing Haruka and Nao together. They did so by making the two meet at school pool on a Sunday. When they were changing after the swimming lesson, Haruka rushes into the girls' locker room when Nao was scared by a black cat inside a box. The school supervisor hears their chatter, but the two were able to hide inside a box before he catches them. Thinking it was just the cat, he leaves. There, Nao gets to know that Haruka does not hate her, only that he was just surprised at the events of that summer day, dispelling her assumptions. Meanwhile, Sora shows her hatred of Nao, whom she thinks is the reason why Haruka has been preoccupied the past couple of days, at home on her laptop.";
}
示例5: LogMessageVM
public LogMessageVM(JMMServerBinary.Contract_LogMessage contract)
{
this.LogMessageID = contract.LogMessageID;
this.LogType = contract.LogType;
this.LogContent = contract.LogContent;
this.LogDate = contract.LogDate;
}
示例6: AnimeTitleVM
public AnimeTitleVM(JMMServerBinary.Contract_AnimeTitle contract)
{
this.AnimeID = contract.AnimeID;
this.TitleType = contract.TitleType;
this.Language = contract.Language;
this.Title = contract.Title;
}
示例7: MovieDBMovieSearchResultVM
public MovieDBMovieSearchResultVM(JMMServerBinary.Contract_MovieDBMovieSearchResult contract)
{
this.MovieID = contract.MovieID;
this.MovieName = contract.MovieName;
this.OriginalName = contract.OriginalName;
this.Overview = contract.Overview;
}
示例8: PlaylistVM
public PlaylistVM(JMMServerBinary.Contract_Playlist contract)
{
PlaylistObjects = new ObservableCollection<PlaylistItemVM>();
Populate(contract);
//PopulatePlaylistObjects();
}
示例9: VideoLocalRenamedVM
public VideoLocalRenamedVM(JMMServerBinary.Contract_VideoLocalRenamed contract)
{
this.VideoLocalID = contract.VideoLocalID;
this.NewFileName = contract.NewFileName;
this.VideoLocal = new VideoLocalVM(contract.VideoLocal);
this.Success = contract.Success;
}
示例10: AniDBReleaseGroupVM
public AniDBReleaseGroupVM(JMMServerBinary.Contract_AniDBReleaseGroup contract)
{
this.GroupID = contract.GroupID;
this.GroupName = contract.GroupName;
this.UserCollecting = contract.UserCollecting;
this.FileCount = contract.FileCount;
}
示例11: CrossRef_AniDB_TvDBEpisodeVM
public CrossRef_AniDB_TvDBEpisodeVM(JMMServerBinary.Contract_CrossRef_AniDB_TvDB_Episode contract)
{
this.AnimeID = contract.AnimeID;
this.AniDBEpisodeID = contract.AniDBEpisodeID;
this.CrossRef_AniDB_TvDB_EpisodeID = contract.CrossRef_AniDB_TvDB_EpisodeID;
this.TvDBEpisodeID = contract.TvDBEpisodeID;
}
示例12: GroupFilterExtendedVM
public GroupFilterExtendedVM(JMMServerBinary.Contract_GroupFilterExtended contract)
{
this.GroupFilter = new GroupFilterVM(contract.GroupFilter);
SeriesCount = contract.SeriesCount;
GroupCount = contract.GroupCount;
}
示例13: AdminMessage
public AdminMessage(JMMServerBinary.Contract_AdminMessage contract)
{
AdminMessageId = contract.AdminMessageId;
MessageDate = contract.MessageDate;
MessageType = contract.MessageType;
Message = contract.Message;
MessageURL = contract.MessageURL;
}
示例14: CrossRef_AniDB_TvDBVM
public CrossRef_AniDB_TvDBVM(JMMServerBinary.Contract_CrossRef_AniDB_TvDB contract)
{
this.AnimeID = contract.AnimeID;
this.TvDBID = contract.TvDBID;
this.CrossRef_AniDB_TvDBID = contract.CrossRef_AniDB_TvDBID;
this.TvDBSeasonNumber = contract.TvDBSeasonNumber;
this.CrossRefSource = contract.CrossRefSource;
}
示例15: Trakt_ImageFanartVM
public Trakt_ImageFanartVM(JMMServerBinary.Contract_Trakt_ImageFanart contract)
{
this.Trakt_ImageFanartID = contract.Trakt_ImageFanartID;
this.Trakt_ShowID = contract.Trakt_ShowID;
this.Season = contract.Season;
this.ImageURL = contract.ImageURL;
this.Enabled = contract.Enabled;
}