You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-8Lines changed: 15 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,10 +16,10 @@ The wrapper can easily be imported into your project using the [NuGet package](h
16
16
### Wrapper Usage
17
17
When creating a new instance of SSL Labs api wrapper service you must supply the API url during the initialization. For example in C# this would be expressed as the following:
The Analyze method is used to initiate an assessment or retrieve results. The results may only be partial so see SSL Labs documentation for more information as as GetEndpointDetails call may be needed to view the whole result set.
The wrapper also contains an overloaded Analyze method which only requires the host parameter. Internal is uses the following parameter options - Publish.Off, ClearCache.On, FromCache.Ignore, All.On.
@@ -52,10 +52,10 @@ The Analyze method is used to initiate and wait for an assessment to complete be
52
52
Another call to GetEndpointDetails() may be needed to view the whole result set for a given endpoint.
The wrapper also contains an overloaded AutomaticAnalyze method which only requires the host parameter. Internal is uses the following parameter options - Publish.Off, ClearCache.On, FromCache.Ignore, All.On.
58
+
The wrapper also contains an overloaded AutomaticAnalyze method which only requires the host parameter. Internal it uses the following parameter options - Publish.Off, StartNew.On, FromCache.Ignore, All.On.
59
59
```C#
60
60
publicAnalyzeAutomaticAnalyze(stringhost)
61
61
```
@@ -168,10 +168,9 @@ public enum Publish
168
168
Off
169
169
}
170
170
171
-
publicenumClearCache
171
+
publicenumStartNew
172
172
{
173
173
On,
174
-
Off,
175
174
Ignore
176
175
}
177
176
@@ -187,6 +186,14 @@ public enum All
187
186
On,
188
187
Done
189
188
}
189
+
190
+
publicenumIgnoreMismatch
191
+
{
192
+
On,
193
+
Off
194
+
}
195
+
196
+
190
197
```
191
198
192
199
### Development ToDo List
@@ -198,7 +205,7 @@ public enum All
198
205
### Author
199
206
Ashley Poole - www.ashleypoole.co.uk.
200
207
201
-
[Project's home page](http://www.ashleypoole.co.uk/ssllabs-api-wrapper?utm_source=github&utm_medium=githubproject&utm_campaign=ssllwrapper)
208
+
[Project's home page](http://www.ashleypoole.co.uk/ssllabs-api-wrapper?utm_source=github&utm_medium=ssllabsapiwrapperrepo&utm_campaign=ssllwrapper)
202
209
203
210
Please contact me if you have any questions, issues or recommendations either via [my website](http://www.ashleypoole.co.uk), [Twitter](http://twitter.com/AshleyPooleUK) or [by email](mailto:[email protected]).
0 commit comments