@@ -128,10 +128,10 @@ private void OnBaseUriChanged(string oldValue, string newValue)
128128 }
129129 }
130130
131- /// <summary>
132- /// Returns/sets the root uri of the OData service endpoint that data should be fetched from .
133- /// </summary>
134- public string BaseUri
131+ /// <summary>
132+ /// Returns/sets the root uri of the OData service endpoint from which to retrieve data .
133+ /// </summary>
134+ public string BaseUri
135135 {
136136 get { return ( string ) GetValue ( BaseUriProperty ) ; }
137137 set { SetValue ( BaseUriProperty , value ) ; }
@@ -156,10 +156,10 @@ private void OnEntitySetChanged(string oldValue, string newValue)
156156 }
157157 }
158158
159- /// <summary>
160- /// Gets or sets the desired entity set within the root OData API from which to retrieve data.
161- /// </summary>
162- public string EntitySet
159+ /// <summary>
160+ /// Returns/ sets the desired entity set within the root OData API from which to retrieve data.
161+ /// </summary>
162+ public string EntitySet
163163 {
164164 get { return ( string ) GetValue ( EntitySetProperty ) ; }
165165 set { SetValue ( EntitySetProperty , value ) ; }
@@ -184,10 +184,10 @@ private void OnTimeoutMillisecondsChanged(string oldValue, string newValue)
184184 }
185185 }
186186
187- /// <summary>
188- /// Gets or sets the desired timeout to use for requests of the OData API.
189- /// </summary>
190- public int TimeoutMilliseconds
187+ /// <summary>
188+ /// Returns/ sets the desired timeout to use for requests made to the OData API.
189+ /// </summary>
190+ public int TimeoutMilliseconds
191191 {
192192 get { return ( int ) GetValue ( TimeoutMillisecondsProperty ) ; }
193193 set { SetValue ( TimeoutMillisecondsProperty , value ) ; }
0 commit comments