@@ -28,25 +28,25 @@ You have **3 ways** to see script result:
28
28
** 1- Put it in a string variable:**
29
29
30
30
``` cs
31
- string curlScript = httpClient .GenerateCurlInString (httpRequestMessage );
31
+ string curlScript = httpClientInstance .GenerateCurlInString (httpRequestMessage );
32
32
```
33
33
34
34
** 2- Show to the IDE console:**
35
35
36
36
``` cs
37
- httpClient .GenerateCurlInConsole (httpRequestMessage );
37
+ httpClientInstance .GenerateCurlInConsole (httpRequestMessage );
38
38
```
39
39
- ** Notice** : when the curl script was written in the console, maybe your ** IDE console** applies ** WordWrap** automatically.
40
40
you should ** remove enters** from the script.
41
- - ** Notice** : The 'config' Parameter is optional.
41
+ - ** Notice** : You can set specific configurations for your result in the optional ** second parameter ** .
42
42
43
43
** 3- Write in a file:**
44
44
45
45
``` cs
46
- httpClient .GenerateCurlInFile (httpRequestMessage );
46
+ httpClientInstance .GenerateCurlInFile (httpRequestMessage );
47
47
```
48
48
49
- - ** Notice** : The 'config' Parameter is optional.
49
+ - ** Notice** : You can set specific configurations for your result in the optional ** second parameter ** .
50
50
51
51
** Read more about this extension:**
52
52
@@ -64,9 +64,7 @@ also, I will be extremely happy if you contribute to the implementation and impr
64
64
65
65
If you like this project, learn something, or are using it in your applications, please give it a star. Thanks!
66
66
67
- ## ** How to use HttpClientToCurlGenerator Extensions** :
68
-
69
- ** You can see more samples in the FunctionalTest Directory.**
67
+ ## ** How to use HttpClientToCurl Extensions** :
70
68
71
69
### ** Post Method** sample code (it will be written in the ** console** ):
72
70
``` cs
0 commit comments