Ejemplo n.º 1
0
		public VKRequest<StructEntity<int>> UsersReport(
			 uint userId ,
			 ComplaintType type ,
			 string comment 
			){
			var req = new VKRequest<StructEntity<int>>{
				MethodName = "users.report",
				Parameters = new Dictionary<string, string> {
					{ "user_id", userId.ToNCString() },
			{ "type", type.ToNClString() },
			{ "comment", comment }
				}
			};
				req.Token = CurrentToken;
			
			return req;
		}