File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
src/Microsoft.OpenApi/Any Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,21 @@ public class OpenApiString : OpenApiPrimitive<string>
1010 {
1111 private bool isExplicit ;
1212
13+ /// <summary>
14+ /// Initializes the <see cref="OpenApiString"/> class.
15+ /// </summary>
16+ /// <param name="value"></param>
17+ public OpenApiString ( string value )
18+ : this ( value , false )
19+ {
20+ }
21+
1322 /// <summary>
1423 /// Initializes the <see cref="OpenApiString"/> class.
1524 /// </summary>
1625 /// <param name="value"></param>
1726 /// <param name="isExplicit">Used to indicate if a string is quoted.</param>
18- public OpenApiString ( string value , bool isExplicit = false )
27+ public OpenApiString ( string value , bool isExplicit )
1928 : base ( value )
2029 {
2130 this . isExplicit = isExplicit ;
You can’t perform that action at this time.
0 commit comments