diff --git a/Net.Http.WebApi.OData/Model/EdmComplexType.cs b/Net.Http.WebApi.OData/Model/EdmComplexType.cs index 262a232..edba1ba 100644 --- a/Net.Http.WebApi.OData/Model/EdmComplexType.cs +++ b/Net.Http.WebApi.OData/Model/EdmComplexType.cs @@ -49,7 +49,7 @@ internal EdmComplexType(Type clrType, EdmType baseType, IReadOnlyList /// The name of the property. /// The declared in this type with the specified name. - /// The type does not contain a property with the specified name. + /// The type does not contain a property with the specified name. public EdmProperty GetProperty(string name) { for (int i = 0; i < this.Properties.Count; i++) diff --git a/Net.Http.WebApi.OData/Model/EdmProperty.cs b/Net.Http.WebApi.OData/Model/EdmProperty.cs index a192455..1cafdde 100644 --- a/Net.Http.WebApi.OData/Model/EdmProperty.cs +++ b/Net.Http.WebApi.OData/Model/EdmProperty.cs @@ -26,8 +26,8 @@ public sealed class EdmProperty /// The name of the property. /// Type of the edm. /// Type of the declaring. - /// Property name must be specified. - /// Property type and declaring type must be specified. + /// Property name must be specified. + /// Property type and declaring type must be specified. internal EdmProperty(string name, EdmType propertyType, EdmComplexType declaringType) { if (string.IsNullOrWhiteSpace(name)) diff --git a/Net.Http.WebApi.OData/Query/Binders/AbstractFilterBinder.cs b/Net.Http.WebApi.OData/Query/Binders/AbstractFilterBinder.cs index 7bf4c21..fbea61b 100644 --- a/Net.Http.WebApi.OData/Query/Binders/AbstractFilterBinder.cs +++ b/Net.Http.WebApi.OData/Query/Binders/AbstractFilterBinder.cs @@ -50,7 +50,7 @@ public void Bind(FilterQueryOption filterQueryOption) /// Binds the specified . /// /// The to bind. - /// Thrown if the is not supported. + /// Thrown if the is not supported. protected void Bind(QueryNode queryNode) { if (queryNode is null) diff --git a/Net.Http.WebApi.OData/Query/QueryOption.cs b/Net.Http.WebApi.OData/Query/QueryOption.cs index c911a66..f18d0ac 100644 --- a/Net.Http.WebApi.OData/Query/QueryOption.cs +++ b/Net.Http.WebApi.OData/Query/QueryOption.cs @@ -24,7 +24,7 @@ public abstract class QueryOption /// Initialises a new instance of the class. /// /// The raw value. - /// Thrown if raw value is null. + /// Thrown if raw value is null. protected QueryOption(string rawValue) { this.RawValue = rawValue ?? throw new ArgumentNullException(nameof(rawValue)); diff --git a/Net.Http.WebApi.OData/Query/Validators/CountQueryOptionValidator.cs b/Net.Http.WebApi.OData/Query/Validators/CountQueryOptionValidator.cs index 4d3d053..69aa670 100644 --- a/Net.Http.WebApi.OData/Query/Validators/CountQueryOptionValidator.cs +++ b/Net.Http.WebApi.OData/Query/Validators/CountQueryOptionValidator.cs @@ -13,7 +13,6 @@ namespace Net.Http.WebApi.OData.Query.Validators { using System.Net; - using System.Web.Http; /// /// A class which validates the $count query option based upon the . @@ -25,7 +24,7 @@ internal static class CountQueryOptionValidator /// /// The query options. /// The validation settings. - /// Thrown if the validation fails. + /// Thrown if the validation fails. internal static void Validate(ODataQueryOptions queryOptions, ODataValidationSettings validationSettings) { if (queryOptions.RawValues.Count is null) diff --git a/Net.Http.WebApi.OData/Query/Validators/ExpandQueryOptionValidator.cs b/Net.Http.WebApi.OData/Query/Validators/ExpandQueryOptionValidator.cs index 4cb6c92..24c688f 100644 --- a/Net.Http.WebApi.OData/Query/Validators/ExpandQueryOptionValidator.cs +++ b/Net.Http.WebApi.OData/Query/Validators/ExpandQueryOptionValidator.cs @@ -13,7 +13,6 @@ namespace Net.Http.WebApi.OData.Query.Validators { using System.Net; - using System.Web.Http; /// /// A class which validates the $expand query option based upon the . @@ -25,7 +24,7 @@ internal static class ExpandQueryOptionValidator /// /// The query options. /// The validation settings. - /// Thrown if the validation fails. + /// Thrown if the validation fails. internal static void Validate(ODataQueryOptions queryOptions, ODataValidationSettings validationSettings) { if (queryOptions.RawValues.Expand is null) diff --git a/Net.Http.WebApi.OData/Query/Validators/FilterQueryOptionValidator.cs b/Net.Http.WebApi.OData/Query/Validators/FilterQueryOptionValidator.cs index 6a2b969..76a3a27 100644 --- a/Net.Http.WebApi.OData/Query/Validators/FilterQueryOptionValidator.cs +++ b/Net.Http.WebApi.OData/Query/Validators/FilterQueryOptionValidator.cs @@ -13,7 +13,6 @@ namespace Net.Http.WebApi.OData.Query.Validators { using System.Net; - using System.Web.Http; /// /// A class which validates the $filter query option based upon the . @@ -25,7 +24,7 @@ internal static class FilterQueryOptionValidator /// /// The query options. /// The validation settings. - /// Thrown if the validation fails. + /// Thrown if the validation fails. internal static void Validate(ODataQueryOptions queryOptions, ODataValidationSettings validationSettings) { if (queryOptions.Filter is null) diff --git a/Net.Http.WebApi.OData/Query/Validators/FormatQueryOptionValidator.cs b/Net.Http.WebApi.OData/Query/Validators/FormatQueryOptionValidator.cs index f815be1..3817ec2 100644 --- a/Net.Http.WebApi.OData/Query/Validators/FormatQueryOptionValidator.cs +++ b/Net.Http.WebApi.OData/Query/Validators/FormatQueryOptionValidator.cs @@ -13,7 +13,6 @@ namespace Net.Http.WebApi.OData.Query.Validators { using System.Net; - using System.Web.Http; /// /// A class which validates the $format query option based upon the . @@ -25,7 +24,7 @@ internal static class FormatQueryOptionValidator /// /// The query options. /// The validation settings. - /// Thrown if the validation fails. + /// Thrown if the validation fails. internal static void Validate(ODataQueryOptions queryOptions, ODataValidationSettings validationSettings) { if (queryOptions.RawValues.Format is null) diff --git a/Net.Http.WebApi.OData/Query/Validators/OrderByQueryOptionValidator.cs b/Net.Http.WebApi.OData/Query/Validators/OrderByQueryOptionValidator.cs index 421ac02..ff1cf30 100644 --- a/Net.Http.WebApi.OData/Query/Validators/OrderByQueryOptionValidator.cs +++ b/Net.Http.WebApi.OData/Query/Validators/OrderByQueryOptionValidator.cs @@ -13,7 +13,6 @@ namespace Net.Http.WebApi.OData.Query.Validators { using System.Net; - using System.Web.Http; /// /// A class which validates the $orderby query option based upon the . @@ -25,7 +24,7 @@ internal static class OrderByQueryOptionValidator /// /// The query options. /// The validation settings. - /// Thrown if the validation fails. + /// Thrown if the validation fails. internal static void Validate(ODataQueryOptions queryOptions, ODataValidationSettings validationSettings) { if (queryOptions.RawValues.OrderBy is null) diff --git a/Net.Http.WebApi.OData/Query/Validators/SearchQueryOptionValidator.cs b/Net.Http.WebApi.OData/Query/Validators/SearchQueryOptionValidator.cs index 85039fc..f1e25fa 100644 --- a/Net.Http.WebApi.OData/Query/Validators/SearchQueryOptionValidator.cs +++ b/Net.Http.WebApi.OData/Query/Validators/SearchQueryOptionValidator.cs @@ -13,7 +13,6 @@ namespace Net.Http.WebApi.OData.Query.Validators { using System.Net; - using System.Web.Http; /// /// A class which validates the $search query option based upon the . @@ -25,7 +24,7 @@ internal static class SearchQueryOptionValidator /// /// The query options. /// The validation settings. - /// Thrown if the validation fails. + /// Thrown if the validation fails. internal static void Validate(ODataQueryOptions queryOptions, ODataValidationSettings validationSettings) { if (queryOptions.RawValues.Search is null) diff --git a/Net.Http.WebApi.OData/Query/Validators/SelectQueryOptionValidator.cs b/Net.Http.WebApi.OData/Query/Validators/SelectQueryOptionValidator.cs index b140a1e..8abd552 100644 --- a/Net.Http.WebApi.OData/Query/Validators/SelectQueryOptionValidator.cs +++ b/Net.Http.WebApi.OData/Query/Validators/SelectQueryOptionValidator.cs @@ -13,7 +13,6 @@ namespace Net.Http.WebApi.OData.Query.Validators { using System.Net; - using System.Web.Http; /// /// A class which validates the $select query option based upon the . @@ -25,7 +24,7 @@ internal static class SelectQueryOptionValidator /// /// The query options. /// The validation settings. - /// Thrown if the validation fails. + /// Thrown if the validation fails. internal static void Validate(ODataQueryOptions queryOptions, ODataValidationSettings validationSettings) { if (queryOptions.RawValues.Select is null) diff --git a/Net.Http.WebApi.OData/Query/Validators/SkipQueryOptionValidator.cs b/Net.Http.WebApi.OData/Query/Validators/SkipQueryOptionValidator.cs index fe78795..30835c2 100644 --- a/Net.Http.WebApi.OData/Query/Validators/SkipQueryOptionValidator.cs +++ b/Net.Http.WebApi.OData/Query/Validators/SkipQueryOptionValidator.cs @@ -13,7 +13,6 @@ namespace Net.Http.WebApi.OData.Query.Validators { using System.Net; - using System.Web.Http; /// /// A class which validates the $skip query option based upon the . @@ -25,7 +24,7 @@ internal static class SkipQueryOptionValidator /// /// The query options. /// The validation settings. - /// Thrown if the validation fails. + /// Thrown if the validation fails. internal static void Validate(ODataQueryOptions queryOptions, ODataValidationSettings validationSettings) { if (queryOptions.RawValues.Skip is null) diff --git a/Net.Http.WebApi.OData/Query/Validators/SkipTokenQueryOptionValidator.cs b/Net.Http.WebApi.OData/Query/Validators/SkipTokenQueryOptionValidator.cs index d039d46..5f19f98 100644 --- a/Net.Http.WebApi.OData/Query/Validators/SkipTokenQueryOptionValidator.cs +++ b/Net.Http.WebApi.OData/Query/Validators/SkipTokenQueryOptionValidator.cs @@ -13,7 +13,6 @@ namespace Net.Http.WebApi.OData.Query.Validators { using System.Net; - using System.Web.Http; /// /// A class which validates the $skiptoken query option based upon the . @@ -25,7 +24,7 @@ internal static class SkipTokenQueryOptionValidator /// /// The query options. /// The validation settings. - /// Thrown if the validation fails. + /// Thrown if the validation fails. internal static void Validate(ODataQueryOptions queryOptions, ODataValidationSettings validationSettings) { if (queryOptions.RawValues.SkipToken is null) diff --git a/Net.Http.WebApi.OData/Query/Validators/TopQueryOptionValidator.cs b/Net.Http.WebApi.OData/Query/Validators/TopQueryOptionValidator.cs index c9d44e6..26cd8c8 100644 --- a/Net.Http.WebApi.OData/Query/Validators/TopQueryOptionValidator.cs +++ b/Net.Http.WebApi.OData/Query/Validators/TopQueryOptionValidator.cs @@ -14,7 +14,6 @@ namespace Net.Http.WebApi.OData.Query.Validators { using System.Globalization; using System.Net; - using System.Web.Http; /// /// A class which validates the $top query option based upon the . @@ -26,7 +25,7 @@ internal static class TopQueryOptionValidator /// /// The query options. /// The validation settings. - /// Thrown if the validation fails. + /// Thrown if the validation fails. internal static void Validate(ODataQueryOptions queryOptions, ODataValidationSettings validationSettings) { if (queryOptions.RawValues.Top is null)