Сам спросил, сам отвечу ;)
string strProxyces = "87.34.132.43:8080@user:password";
if (strProxyces!=String.Empty){
string[] arrProxy = strProxyces.Split('@');
string strProxyPort = arrProxy[0];
string strLoginPass = arrProxy[1];
string[] arrProxyPort = strProxyPort.Split(':');
string strProxy = arrProxyPort[0];
string strPort = arrProxyPort[1];
string[] arrUserPass = strLoginPass.Split(':');
string strUser = arrUserPass[0];
string strPass = arrUserPass[1];
int strPorts = Convert.ToInt32(strPort);
project.SendInfoToLog("ПроксиПорт: " + strProxyPort);
project.SendInfoToLog("ЛогинПасс: " + strLoginPass);
project.SendInfoToLog("Прокси: " + strProxy);
project.SendInfoToLog("Порт: " + strPorts);
project.SendInfoToLog("Логин: " + strUser);
project.SendInfoToLog("Пасс: " + strPass);
ApiClient.Proxy = new System.Net.WebProxy(strProxy, strPorts){
UseDefaultCredentials = false,
Credentials = new System.Net.NetworkCredential(strUser, strPass)
};
}