PageRenderTime 46ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/WCFWebApi/src/System.Net.Http/System/Net/Http/ClientCertificateOption.cs

#
C# | 10 lines | 8 code | 1 blank | 1 comment | 0 complexity | fe6e5a1a66a6ce87c75154ae14ad8c05 MD5 | raw file
Possible License(s): CC-BY-SA-3.0, Apache-2.0
  1. namespace System.Net.Http
  2. {
  3. // Used with HttpClientHandler to decide if client certificates should be supplied by default
  4. public enum ClientCertificateOption
  5. {
  6. Manual = 0, // Default
  7. Automatic,
  8. }
  9. }