コード例 #1
0
 /// <inheritdoc />
 public Task <CatResponse <CatMasterRecord> > CatMasterAsync(ICatMasterRequest request, CancellationToken ct = default) =>
 DoCatAsync <ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, ct);
コード例 #2
0
		/// <inheritdoc/>
		public Task<ICatResponse<CatMasterRecord>> CatMasterAsync(ICatMasterRequest request, CancellationToken cancellationToken = default(CancellationToken)) =>
			this.DoCatAsync<ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, cancellationToken, this.LowLevelDispatch.CatMasterDispatchAsync<CatResponse<CatMasterRecord>>);
コード例 #3
0
 /// <inheritdoc />
 public CatResponse <CatMasterRecord> CatMaster(ICatMasterRequest request) =>
 DoCat <ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request);
コード例 #4
0
 public static Task <CatResponse <CatMasterRecord> > CatMasterAsync(this IElasticClient client, ICatMasterRequest request,
                                                                    CancellationToken ct = default
                                                                    )
 => client.Cat.MasterAsync(request, ct);
コード例 #5
0
		/// <inheritdoc/>
		public ICatResponse<CatMasterRecord> CatMaster(ICatMasterRequest request) =>
			this.DoCat<ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, this.LowLevelDispatch.CatMasterDispatch<CatResponse<CatMasterRecord>>);
コード例 #6
0
 /// <inheritdoc/>
 public Task <ICatResponse <CatMasterRecord> > CatMasterAsync(ICatMasterRequest request, CancellationToken cancellationToken = default(CancellationToken)) =>
 this.DoCatAsync <ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, cancellationToken, this.LowLevelDispatch.CatMasterDispatchAsync <CatResponse <CatMasterRecord> >);
コード例 #7
0
 public static CatResponse <CatMasterRecord> CatMaster(this IElasticClient client, ICatMasterRequest request)
 => client.Cat.Master(request);
コード例 #8
0
 /// <inheritdoc/>
 public ICatResponse <CatMasterRecord> CatMaster(ICatMasterRequest request) =>
 this.DoCat <ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, this.LowLevelDispatch.CatMasterDispatch <CatResponse <CatMasterRecord> >);
コード例 #9
0
 public Task <ICatResponse <CatMasterRecord> > CatMasterAsync(ICatMasterRequest request)
 {
     return(this.DoCatAsync <ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, this.RawDispatch.CatMasterDispatchAsync <CatResponse <CatMasterRecord> >));
 }
コード例 #10
0
 public ICatResponse <CatMasterRecord> CatMaster(ICatMasterRequest request)
 {
     return(this.DoCat <ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, this.RawDispatch.CatMasterDispatch <CatResponse <CatMasterRecord> >));
 }
コード例 #11
0
 /// <inheritdoc/>
 public Task <ICatResponse <CatMasterRecord> > CatMasterAsync(ICatMasterRequest request) =>
 this.DoCatAsync <ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, this.LowLevelDispatch.CatMasterDispatchAsync <CatResponse <CatMasterRecord> >);
コード例 #12
0
		/// <inheritdoc/>
		public Task<ICatResponse<CatMasterRecord>> CatMasterAsync(ICatMasterRequest request) =>
			this.DoCatAsync<ICatMasterRequest, CatMasterRequestParameters, CatMasterRecord>(request, this.LowLevelDispatch.CatMasterDispatchAsync<CatResponse<CatMasterRecord>>);