File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- using System . Collections . Generic ;
1+ using System ;
2+ using System . Collections ;
3+ using System . Collections . Generic ;
24using System . Text ;
35using System . Web . Script . Serialization ;
4- using System . Collections ;
5- using System ;
66
77namespace Rally . RestApi
88{
9- internal class DynamicJsonSerializer
9+ public class DynamicJsonSerializer
1010 {
1111 readonly JavaScriptSerializer deSerializer ;
1212 public DynamicJsonSerializer ( )
Original file line number Diff line number Diff line change 3131// You can specify all the values or you can default the Build and Revision Numbers
3232// by using the '*' as shown below:
3333// [assembly: AssemblyVersion("1.0.*")]
34- [ assembly: AssemblyVersion ( "1.0.19 .0" ) ]
35- [ assembly: AssemblyFileVersion ( "1.0.19 .0" ) ]
34+ [ assembly: AssemblyVersion ( "1.0.20 .0" ) ]
35+ [ assembly: AssemblyFileVersion ( "1.0.20 .0" ) ]
3636
3737[ assembly: System . Runtime . CompilerServices . InternalsVisibleTo ( "Rally.RestApi.Test" ) ]
Original file line number Diff line number Diff line change @@ -10,9 +10,11 @@ namespace Rally.RestApi.Response
1010 /// </summary>
1111 public class QueryResult : OperationResult
1212 {
13- internal QueryResult ( DynamicJsonObject obj )
13+ /// <summary>
14+ /// Constructor
15+ /// </summary>
16+ public QueryResult ( DynamicJsonObject obj )
1417 {
15-
1618 Errors = GetCollection < string > ( obj [ "Errors" ] ) ;
1719 Warnings = GetCollection < string > ( obj [ "Warnings" ] ) ;
1820 if ( obj . Dictionary . ContainsKey ( "TotalResultCount" ) )
You can’t perform that action at this time.
0 commit comments