@@ -13,7 +13,18 @@ public class QueryStringBuilder : IQueryStringBuilder
13
13
```
14
14
15
15
Inheritance [Object](https ://docs .microsoft .com /en -us /dotnet /api /system .object ) → [QueryStringBuilder](./graphql .query .builder .querystringbuilder )<br >
16
- Implements [IQueryStringBuilder](./graphql .query .builder .iquerystringbuilder )
16
+ Implements [IQueryStringBuilder](./graphql .query .builder .iquerystringbuilder )<br >
17
+ Attributes [NullableContextAttribute](./system .runtime .compilerservices .nullablecontextattribute ), [NullableAttribute](./system .runtime .compilerservices .nullableattribute )
18
+
19
+ ## Fields
20
+
21
+ ### **formatter**
22
+
23
+ The property name formatter .
24
+
25
+ ```csharp
26
+ protected Func <PropertyInfo , string > formatter ;
27
+ ```
17
28
18
29
## Properties
19
30
@@ -54,6 +65,28 @@ The property name formatter
54
65
55
66
## Methods
56
67
68
+ ### ** Build< ; TSource> ; (IQuery< ; TSource> ; )**
69
+
70
+ Builds the query.
71
+
72
+ ``` csharp
73
+ public string Build <TSource >(IQuery < TSource > query )
74
+ ```
75
+
76
+ #### Type Parameters
77
+
78
+ ` TSource ` <br >
79
+
80
+ #### Parameters
81
+
82
+ ` query ` IQuery< ; TSource> ; <br >
83
+ The query.
84
+
85
+ #### Returns
86
+
87
+ [ String] ( https://docs.microsoft.com/en-us/dotnet/api/system.string ) <br >
88
+ The GraphQL query as string, without outer enclosing block.
89
+
57
90
### ** Clear()**
58
91
59
92
Clears the string builder.
@@ -97,24 +130,6 @@ The formatted query param.
97
130
[ InvalidDataException] ( https://docs.microsoft.com/en-us/dotnet/api/system.io.invaliddataexception ) <br >
98
131
Invalid Object Type in Param List
99
132
100
- ### ** ObjectToDictionary(Object)**
101
-
102
- Convert object into dictionary.
103
-
104
- ``` csharp
105
- internal Dictionary < string , object > ObjectToDictionary (object object )
106
- ```
107
-
108
- #### Parameters
109
-
110
- ` object ` [ Object] ( https://docs.microsoft.com/en-us/dotnet/api/system.object ) <br >
111
- The object.
112
-
113
- #### Returns
114
-
115
- [ Dictionary< ; String, Object> ; ] ( https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.dictionary-2 ) <br >
116
- The object as dictionary.
117
-
118
133
### ** AddParams< ; TSource> ; (IQuery< ; TSource> ; )**
119
134
120
135
Adds query params to the query string.
@@ -154,28 +169,6 @@ The query.
154
169
[ ArgumentException] ( https://docs.microsoft.com/en-us/dotnet/api/system.argumentexception ) <br >
155
170
Invalid Object in Field List
156
171
157
- ### ** Build< ; TSource> ; (IQuery< ; TSource> ; )**
158
-
159
- Builds the query.
160
-
161
- ``` csharp
162
- public string Build <TSource >(IQuery < TSource > query )
163
- ```
164
-
165
- #### Type Parameters
166
-
167
- ` TSource ` <br >
168
-
169
- #### Parameters
170
-
171
- ` query ` IQuery< ; TSource> ; <br >
172
- The query.
173
-
174
- #### Returns
175
-
176
- [ String] ( https://docs.microsoft.com/en-us/dotnet/api/system.string ) <br >
177
- The GraphQL query as string, without outer enclosing block.
178
-
179
172
---
180
173
181
174
[ ` < Back ` ] ( ./ )
0 commit comments