コード例 #1
0
ファイル: Connector.cs プロジェクト: weksil/1cVkClient
 public static Uri GetPhotoUri(string path, AuthToken token)
 {
     return(new Uri(UrlPictures + path + "?" + token.ToParametr()));
 }
コード例 #2
0
 public Request(string comand, AuthToken token = null)
 {
     this.comand = comand;
     parametrs   = new Dictionary <string, string>();
     this.token  = token;
 }