|
12 | 12 | @const NSURLProtectionSpaceHTTP
|
13 | 13 | @abstract The protocol for HTTP
|
14 | 14 | */
|
15 |
| -public let NSURLProtectionSpaceHTTP: String = "" // NSUnimplemented |
| 15 | +public let NSURLProtectionSpaceHTTP: String = "NSURLProtectionSpaceHTTP" |
16 | 16 |
|
17 | 17 | /*!
|
18 | 18 | @const NSURLProtectionSpaceHTTPS
|
19 | 19 | @abstract The protocol for HTTPS
|
20 | 20 | */
|
21 |
| -public let NSURLProtectionSpaceHTTPS: String = "" // NSUnimplemented |
| 21 | +public let NSURLProtectionSpaceHTTPS: String = "NSURLProtectionSpaceHTTPS" |
22 | 22 |
|
23 | 23 | /*!
|
24 | 24 | @const NSURLProtectionSpaceFTP
|
25 | 25 | @abstract The protocol for FTP
|
26 | 26 | */
|
27 |
| -public let NSURLProtectionSpaceFTP: String = "" // NSUnimplemented |
| 27 | +public let NSURLProtectionSpaceFTP: String = "NSURLProtectionSpaceFTP" |
28 | 28 |
|
29 | 29 | /*!
|
30 | 30 | @const NSURLProtectionSpaceHTTPProxy
|
31 | 31 | @abstract The proxy type for http proxies
|
32 | 32 | */
|
33 |
| -public let NSURLProtectionSpaceHTTPProxy: String = "" // NSUnimplemented |
| 33 | +public let NSURLProtectionSpaceHTTPProxy: String = "NSURLProtectionSpaceHTTPProxy" |
34 | 34 |
|
35 | 35 | /*!
|
36 | 36 | @const NSURLProtectionSpaceHTTPSProxy
|
37 | 37 | @abstract The proxy type for https proxies
|
38 | 38 | */
|
39 |
| -public let NSURLProtectionSpaceHTTPSProxy: String = "" // NSUnimplemented |
| 39 | +public let NSURLProtectionSpaceHTTPSProxy: String = "NSURLProtectionSpaceHTTPSProxy" |
40 | 40 |
|
41 | 41 | /*!
|
42 | 42 | @const NSURLProtectionSpaceFTPProxy
|
43 | 43 | @abstract The proxy type for ftp proxies
|
44 | 44 | */
|
45 |
| -public let NSURLProtectionSpaceFTPProxy: String = "" // NSUnimplemented |
| 45 | +public let NSURLProtectionSpaceFTPProxy: String = "NSURLProtectionSpaceFTPProxy" |
46 | 46 |
|
47 | 47 | /*!
|
48 | 48 | @const NSURLProtectionSpaceSOCKSProxy
|
49 | 49 | @abstract The proxy type for SOCKS proxies
|
50 | 50 | */
|
51 |
| -public let NSURLProtectionSpaceSOCKSProxy: String = "" // NSUnimplemented |
| 51 | +public let NSURLProtectionSpaceSOCKSProxy: String = "NSURLProtectionSpaceSOCKSProxy" |
52 | 52 |
|
53 | 53 | /*!
|
54 | 54 | @const NSURLAuthenticationMethodDefault
|
55 | 55 | @abstract The default authentication method for a protocol
|
56 | 56 | */
|
57 |
| -public let NSURLAuthenticationMethodDefault: String = "" // NSUnimplemented |
| 57 | +public let NSURLAuthenticationMethodDefault: String = "NSURLAuthenticationMethodDefault" |
58 | 58 |
|
59 | 59 | /*!
|
60 | 60 | @const NSURLAuthenticationMethodHTTPBasic
|
61 | 61 | @abstract HTTP basic authentication. Equivalent to
|
62 | 62 | NSURLAuthenticationMethodDefault for http.
|
63 | 63 | */
|
64 |
| -public let NSURLAuthenticationMethodHTTPBasic: String = "" // NSUnimplemented |
| 64 | +public let NSURLAuthenticationMethodHTTPBasic: String = "NSURLAuthenticationMethodHTTPBasic" |
65 | 65 |
|
66 | 66 | /*!
|
67 | 67 | @const NSURLAuthenticationMethodHTTPDigest
|
68 | 68 | @abstract HTTP digest authentication.
|
69 | 69 | */
|
70 |
| -public let NSURLAuthenticationMethodHTTPDigest: String = "" // NSUnimplemented |
| 70 | +public let NSURLAuthenticationMethodHTTPDigest: String = "NSURLAuthenticationMethodHTTPDigest" |
71 | 71 |
|
72 | 72 | /*!
|
73 | 73 | @const NSURLAuthenticationMethodHTMLForm
|
74 | 74 | @abstract HTML form authentication. Applies to any protocol.
|
75 | 75 | */
|
76 |
| -public let NSURLAuthenticationMethodHTMLForm: String = "" // NSUnimplemented |
| 76 | +public let NSURLAuthenticationMethodHTMLForm: String = "NSURLAuthenticationMethodHTMLForm" |
77 | 77 |
|
78 | 78 | /*!
|
79 | 79 | @const NSURLAuthenticationMethodNTLM
|
80 | 80 | @abstract NTLM authentication.
|
81 | 81 | */
|
82 |
| -public let NSURLAuthenticationMethodNTLM: String = "" // NSUnimplemented |
| 82 | +public let NSURLAuthenticationMethodNTLM: String = "NSURLAuthenticationMethodNTLM" |
83 | 83 |
|
84 | 84 | /*!
|
85 | 85 | @const NSURLAuthenticationMethodNegotiate
|
86 | 86 | @abstract Negotiate authentication.
|
87 | 87 | */
|
88 |
| -public let NSURLAuthenticationMethodNegotiate: String = "" // NSUnimplemented |
| 88 | +public let NSURLAuthenticationMethodNegotiate: String = "NSURLAuthenticationMethodNegotiate" |
89 | 89 |
|
90 | 90 | /*!
|
91 | 91 | @const NSURLAuthenticationMethodClientCertificate
|
92 | 92 | @abstract SSL Client certificate. Applies to any protocol.
|
93 | 93 | */
|
94 |
| -public let NSURLAuthenticationMethodClientCertificate: String = "" // NSUnimplemented |
| 94 | +public let NSURLAuthenticationMethodClientCertificate: String = "NSURLAuthenticationMethodClientCertificate" |
95 | 95 |
|
96 | 96 | /*!
|
97 | 97 | @const NSURLAuthenticationMethodServerTrust
|
98 | 98 | @abstract SecTrustRef validation required. Applies to any protocol.
|
99 | 99 | */
|
100 |
| -public let NSURLAuthenticationMethodServerTrust: String = "" // NSUnimplemented |
| 100 | +public let NSURLAuthenticationMethodServerTrust: String = "NSURLAuthenticationMethodServerTrust" |
101 | 101 |
|
102 | 102 |
|
103 | 103 | /*!
|
|
0 commit comments