コード例 #1
0
ファイル: SymsAdapter.cs プロジェクト: minettes/CDM
 /// <summary>
 /// The Syms constructor for user-defined token provider (Async)).
 /// </summary>
 public SymsAdapter(string endpoint, TokenProviderAsync tokenProviderAsync) : this()
 {
     this.Endpoint           = endpoint;
     this.TokenProviderAsync = tokenProviderAsync;
 }
コード例 #2
0
ファイル: ADLSAdapter.cs プロジェクト: microsoft/CDM
 /// <summary>
 /// The ADLS constructor for user-defined token provider (Async)).
 /// </summary>
 public ADLSAdapter(string hostname, TokenProviderAsync tokenProviderAsync) : this()
 {
     this.Hostname           = hostname;
     this.TokenProviderAsync = tokenProviderAsync;
 }