2using System.Collections.Generic;
3using System.Security.Cryptography.X509Certificates;
4using System.Threading.Tasks;
40 Task<object>
PutAsync(Uri Uri,
object Data, X509Certificate Certificate,
42 params KeyValuePair<string, string>[] Headers);
54 Task<object>
PutAsync(Uri Uri,
object Data, X509Certificate Certificate,
56 int TimeoutMs, params KeyValuePair<string, string>[] Headers);
68 Task<KeyValuePair<byte[], string>>
PutAsync(Uri Uri,
byte[] EncodedData,
69 string ContentType, X509Certificate Certificate,
71 params KeyValuePair<string, string>[] Headers);
84 Task<KeyValuePair<byte[], string>>
PutAsync(Uri Uri,
byte[] EncodedData,
85 string ContentType, X509Certificate Certificate,
87 int TimeoutMs, params KeyValuePair<string, string>[] Headers);
Basic interface for Internet Content putters. A class implementing this interface and having a defaul...
Task< KeyValuePair< byte[], string > > PutAsync(Uri Uri, byte[] EncodedData, string ContentType, X509Certificate Certificate, RemoteCertificateEventHandler RemoteCertificateValidator, int TimeoutMs, params KeyValuePair< string, string >[] Headers)
Puts to a resource, using a Uniform Resource Identifier (or Locator).
Task< KeyValuePair< byte[], string > > PutAsync(Uri Uri, byte[] EncodedData, string ContentType, X509Certificate Certificate, RemoteCertificateEventHandler RemoteCertificateValidator, params KeyValuePair< string, string >[] Headers)
Puts to a resource, using a Uniform Resource Identifier (or Locator).
Task< object > PutAsync(Uri Uri, object Data, X509Certificate Certificate, RemoteCertificateEventHandler RemoteCertificateValidator, int TimeoutMs, params KeyValuePair< string, string >[] Headers)
Puts to a resource, using a Uniform Resource Identifier (or Locator).
Task< object > PutAsync(Uri Uri, object Data, X509Certificate Certificate, RemoteCertificateEventHandler RemoteCertificateValidator, params KeyValuePair< string, string >[] Headers)
Puts to a resource, using a Uniform Resource Identifier (or Locator).
string[] UriSchemes
Supported URI schemes.
bool CanPut(Uri Uri, out Grade Grade)
If the putter is able to put to a resource, given its URI.
delegate void RemoteCertificateEventHandler(object Sender, RemoteCertificateEventArgs e)
Delegate for remote certificate event handlers.