コード例 #1
0
ファイル: RavenCountersClient.cs プロジェクト: lahma/ravendb
 public CounterBatch(RavenCountersClient countersClient, CounterConvention convention)
 {
     credentials        = countersClient.PrimaryCredentials;
     jsonRequestFactory = countersClient.JsonRequestFactory;
     counterStorageUrl  = countersClient.CounterStorageUrl;
     this.convention    = convention;
 }
コード例 #2
0
ファイル: RavenCountersClient.cs プロジェクト: lahma/ravendb
 public AdminClient(RavenCountersClient countersClient, CounterConvention convention)
 {
     credentials        = countersClient.PrimaryCredentials;
     jsonRequestFactory = countersClient.JsonRequestFactory;
     serverUrl          = countersClient.ServerUrl;
     counterStorageName = countersClient.CounterStorageName;
     this.convention    = convention;
 }
コード例 #3
0
			public AdminClient(RavenCountersClient countersClient, CounterConvention convention)
            {
				credentials = countersClient.PrimaryCredentials;
				jsonRequestFactory = countersClient.JsonRequestFactory;
				serverUrl = countersClient.ServerUrl;
				counterStorageName = countersClient.CounterStorageName;
				this.convention = convention;
            }
コード例 #4
0
			    public CounterBatch(RavenCountersClient countersClient, CounterConvention convention)
			    {
				    credentials = countersClient.PrimaryCredentials;
				    jsonRequestFactory = countersClient.JsonRequestFactory;
					counterStorageUrl = countersClient.CounterStorageUrl;
				    this.convention = convention;
			    }