File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public interface IODataQuery<T> : IODataLinqMethods<T>
3333 /// <summary>
3434 /// Returns the OData query string for this query.
3535 /// </summary>
36- /// <param name="includeParamters ">If <c>true</c>, include the HTTP parameters in the call.</param>
36+ /// <param name="includeParameters ">If <c>true</c>, include the HTTP parameters in the call.</param>
3737 /// <returns>The OData query string representing this query.</returns>
3838 /// <exception cref="NotSupportedException">If the query cannot be represented as an OData query.</exception>
3939 string ToODataString ( bool includeParameters = true ) ;
Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ public RemoteDatasetException() : base()
1919 }
2020
2121 /// <inheritdoc />
22- public RemoteDatasetException ( string ? message ) : base ( message )
22+ public RemoteDatasetException ( string message ) : base ( message )
2323 {
2424 }
2525
2626 /// <inheritdoc />
27- public RemoteDatasetException ( string ? message , Exception ? innerException ) : base ( message , innerException )
27+ public RemoteDatasetException ( string message , Exception innerException ) : base ( message , innerException )
2828 {
2929 }
3030
You can’t perform that action at this time.
0 commit comments