@@ -13,7 +13,18 @@ public class QueryStringBuilder : IQueryStringBuilder
1313```
1414
1515Inheritance [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+ ```
1728
1829## Properties
1930
@@ -54,6 +65,28 @@ The property name formatter
5465
5566## Methods
5667
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+
5790### ** Clear()**
5891
5992Clears the string builder.
@@ -97,24 +130,6 @@ The formatted query param.
97130[ InvalidDataException] ( https://docs.microsoft.com/en-us/dotnet/api/system.io.invaliddataexception ) <br >
98131Invalid Object Type in Param List
99132
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-
118133### ** AddParams< ; TSource> ; (IQuery< ; TSource> ; )**
119134
120135Adds query params to the query string.
@@ -154,28 +169,6 @@ The query.
154169[ ArgumentException] ( https://docs.microsoft.com/en-us/dotnet/api/system.argumentexception ) <br >
155170Invalid Object in Field List
156171
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-
179172---
180173
181174[ ` < Back ` ] ( ./ )
0 commit comments