HttpContentHeaderCollection.ContentMD5 Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta il valore di un'intestazione HTTP Content-MD5 nel contenuto HTTP.
public:
property IBuffer ^ ContentMD5 { IBuffer ^ get(); void set(IBuffer ^ value); };
IBuffer ContentMD5();
void ContentMD5(IBuffer value);
public IBuffer ContentMD5 { get; set; }
var iBuffer = httpContentHeaderCollection.contentMD5;
httpContentHeaderCollection.contentMD5 = iBuffer;
Public Property ContentMD5 As IBuffer
Valore della proprietà
Valore dell'intestazione HTTP Content-MD5 nel contenuto HTTP. Un valore Null indica che l'intestazione è assente.
Commenti
Il codice di esempio seguente mostra un metodo per ottenere o impostare il valore dell'intestazione Content-MD5 sul contenuto HTTP usando la proprietà ContentMD5 nell'oggetto HttpContentHeaderCollection .
// Content-MD5 header
// IBuffer
void DemoContentMD5(IHttpContent content) {
var h = content.Headers;
var str = "This is my content string";
var alg = Windows.Security.Cryptography.Core.HashAlgorithmProvider.OpenAlgorithm("MD5");
var buff = Windows.Security.Cryptography.CryptographicBuffer.ConvertStringToBinary(str, Windows.Security.Cryptography.BinaryStringEncoding.Utf8);
var hashed = alg.HashData(buff);
var res = Windows.Security.Cryptography.CryptographicBuffer.EncodeToHexString(hashed);
h.ContentMD5 = hashed;
var header = h.ContentMD5;
uiLog.Text += "\nCONTENT MD5 HEADER\n";
uiLog.Text += string.Format("ContentMD5: ToString: {0}\n\n", header.ToString());
uiLog.Text += string.Format("ContentMD5: base64: {0} hex: {1}\n\n", Convert.ToBase64String(h.ContentMD5.ToArray()), res);
}