コード例 #1
0
ファイル: TkApi.cs プロジェクト: M1Sports20/TkApi.NET
		public TkApi(TkRestCache tk) {
			this.tk = tk;
			tk.CacheTimeout = CacheTimeout; // TODO: We should not modify the CacheTimeout
		}
コード例 #2
0
ファイル: TkApi.cs プロジェクト: M1Sports20/TkApi.NET
		public TkApi(string consumerKey, string consumerSecret, string accessToken, string accessSecret) {
			tk = new TkRestCache(consumerKey, consumerSecret, accessToken, accessSecret);
			tk.CacheTimeout = CacheTimeout;
		}