Click or drag to resize

BackgroundCopyJobHttpSecurityOptions Enumeration

HTTP security flags that indicate which errors to ignore when connecting to the server.

Namespace:  usis.Net.Bits
Assembly:  usis.Net.Bits (in usis.Net.Bits.dll) Version: 3.0.0.0 (3.0.0.0)
Syntax
[FlagsAttribute]
public enum BackgroundCopyJobHttpSecurityOptions
Members
  Member nameValueDescription
None0 Allows the server to redirect your request to another server. This is the default.
EnableCertificateRevocationListCheck1 Check the certificate revocation list (CRL) to verify that the server certificate has not been revoked.
IgnoreCertificateHostNameInvalid2 Ignores errors caused when the certificate host name of the server does not match the host name in the request.
IgnoreCertificateDateInvalid4 Ignores errors caused by an expired certificate.
IgnoreUnknownCertificationAuthority8 Ignore errors associated with an unknown certification authority (CA).
IgnoreCertificateWrongUsage16 Ignore errors associated with the use of a certificate.
HttpRedirectPolicyAllowReport256 Allows the server to redirect your request to another server. BITS updates the remote name with the final URL.
HttpRedirectPolicyDisallow512 Places the job in the fatal error state when the server redirects your request to another server. BITS updates the remote name with the redirected URL.
HttpRedirectPolicyMask1792 Bitmask that you can use with the security flag value to determine which redirect policy is in effect. It does not include the flag HttpRedirectPolicyAllowHttpsToHttp.
HttpRedirectPolicyAllowHttpsToHttp2048 Allows the server to redirect an HTTPS request to an HTTP URL. You can combine this flag with HttpRedirectPolicyAllowReport.
See Also