Я искал объединение как заголовки, так и тело запроса на публикацию.
Настройка заголовков с помощью HttpRequestMessage.
Код: Выделить всё
HttpClient clientTest = new HttpClient();
HttpRequestMessage httpRequest = new HttpRequestMessage(HttpMethod.Post,url);
httpRequest.Content = new StringContent(string.Empty, Encoding.UTF8, "application/vnd.citrix.sessionparams+xml");
httpRequest.Headers.Authorization = new AuthenticationHeaderValue("CitrixAuth", "H4sIAAAAAAAEAK1X2Y6jyBL9lZLnEbnZt1J");
Код: Выделить всё
XDocument xml = XDocument.Load("RequestSession.xml");
Код: Выделить всё
var httpContent = new StringContent(xml.Document.ToString(), Encoding.UTF8, "application/vnd.citrix.sessionstate+xml");
Подробнее здесь: https://stackoverflow.com/questions/563 ... s-and-body