コード例 #1
0
            public ServiceResponse <T> Put <T>(string path, Dictionary <string, string> parameters = null, List <UploadableFile> files = null)
            {
                SheerIDRequest req = new SheerIDRequest(this.accessToken, ref this.Log, "PUT", this.Url(path), parameters, files, this.verbose);

                return(req.Execute <T>());
            }
コード例 #2
0
            public ServiceResponse <T> Delete <T>(string path)
            {
                SheerIDRequest req = new SheerIDRequest(this.accessToken, ref this.Log, "DELETE", this.Url(path), null, null, this.verbose);

                return(req.Execute <T>());
            }
コード例 #3
0
            public ServiceResponse <T> Get <T>(string path, Dictionary <string, string> parameters = null)
            {
                SheerIDRequest req = new SheerIDRequest(this.accessToken, ref this.Log, "GET", this.Url(path), parameters, null, this.verbose);

                return(req.Execute <T>());
            }