예제 #1
0
파일: Main.cs 프로젝트: Akaike0/SecuresStd
 public Manager(string projectID, string host)
 {
     client     = new GraphQL.Client.Http.GraphQLHttpClient(host, new GraphQL.Client.Serializer.Newtonsoft.NewtonsoftJsonSerializer());
     _projectID = projectID;
 }
예제 #2
0
파일: Main.cs 프로젝트: Akaike0/SecuresStd
 public Manager(string apiKey, string projectID, string host)
 {
     client = new GraphQL.Client.Http.GraphQLHttpClient(host, new GraphQL.Client.Serializer.Newtonsoft.NewtonsoftJsonSerializer());
     Task.Run(() => UseProtectedAPI(apiKey)).Wait();
     _projectID = projectID;
 }