Grabacr07.KanColleWrapper.Rankings.Rankings C# (CSharp) Method

Rankings() private method

private Rankings ( KanColleProxy proxy ) : System
proxy KanColleProxy
return System
		internal Rankings(KanColleProxy proxy)
		{
			this.currentData = new ConcurrentDictionary<int, Ranking>();

			this.TotalRanked = 0;
			this.TotalPages = 0;
			this.CurrentPage = 0;

			proxy.ApiSessionSource.Where(x => x.PathAndQuery == "/kcsapi/api_req_ranking/getlist")
				.Select(Serialize)
				.Where(x => x != null)
				.Subscribe(this.Update);
		}