|
687 | 687 | Internet resource. |
688 | 688 | </summary> |
689 | 689 | </member> |
| 690 | + <member name="P:JSIStudios.SimpleRESTServices.Client.RequestSettings.ConnectionLimit"> |
| 691 | + <summary> |
| 692 | + Gets or sets the maximum number of connections allowed on the <see cref="T:System.Net.ServicePoint" /> object |
| 693 | + used for the request. If the value is <c>null</c>, the connection limit value for the |
| 694 | + <see cref="T:System.Net.ServicePoint" /> object is not altered. |
| 695 | + </summary> |
| 696 | + </member> |
690 | 697 | <member name="P:JSIStudios.SimpleRESTServices.Client.RequestSettings.ContentLength"> |
691 | 698 | <summary> |
692 | 699 | Gets or sets the value of the Content-Length HTTP header. |
|
1830 | 1837 | Gets the default <see cref="T:JSIStudios.SimpleRESTServices.Client.RequestSettings" /> to use for requests sent from this service. |
1831 | 1838 | </summary> |
1832 | 1839 | </member> |
1833 | | - <member name="M:JSIStudios.SimpleRESTServices.Client.Json.JsonRestServices.Execute(System.Uri,JSIStudios.SimpleRESTServices.Client.HttpMethod,System.Func{System.Net.HttpWebResponse,System.Boolean,JSIStudios.SimpleRESTServices.Client.Response},System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.Collections.Generic.Dictionary{System.String,System.String},JSIStudios.SimpleRESTServices.Client.RequestSettings)"> |
1834 | | - <summary> |
1835 | | - Executes a REST request with a string <paramref name="body" /> and user-defined |
1836 | | - callback function for constructing the resulting <see cref="T:JSIStudios.SimpleRESTServices.Client.Response" /> object. |
1837 | | - </summary> |
1838 | | - <param name="url">The base URI.</param> |
1839 | | - <param name="method">The HTTP method to use for the request.</param> |
1840 | | - <param name="responseBuilderCallback">A user-specified function used to construct the resulting <see cref="T:JSIStudios.SimpleRESTServices.Client.Response" /> |
1841 | | - object from the <see cref="T:System.Net.HttpWebResponse" /> and a Boolean value specifying whether or not a <see cref="T:System.Net.WebException" /> |
1842 | | - was thrown during the request. If this value is <c>null</c>, this method is equivalent to calling |
1843 | | - <see cref="M:JSIStudios.SimpleRESTServices.Client.IRestService.Execute(System.Uri,JSIStudios.SimpleRESTServices.Client.HttpMethod,System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.Collections.Generic.Dictionary{System.String,System.String},JSIStudios.SimpleRESTServices.Client.RequestSettings)" />.</param> |
1844 | | - <param name="body">The body of the request. If the value is <c>null</c>, the request is sent without a body.</param> |
1845 | | - <param name="headers"> |
1846 | | - A collection of custom HTTP headers to include with the request. If the value is |
1847 | | - <c>null</c>, no custom headers are added to the HTTP request. |
1848 | | - </param> |
1849 | | - <param name="queryStringParameters"> |
1850 | | - A collection of parameters to add to the query string portion of the request URI. |
1851 | | - If the value is <c>null</c>, no parameters are added to the query string. |
1852 | | - </param> |
1853 | | - <param name="settings"> |
1854 | | - The settings to use for the request. If the value is <c>null</c>, an implementation-specific |
1855 | | - set of default settings will be used for the request. |
1856 | | - </param> |
1857 | | - <returns>Returns a <see cref="T:JSIStudios.SimpleRESTServices.Client.Response" /> object containing the HTTP status code, headers, |
1858 | | - and body from the REST response.</returns> |
1859 | | - <exception cref="T:System.ArgumentNullException">If <paramref name="url" /> is <c>null</c>.</exception> |
1860 | | - <exception cref="T:System.NotSupportedException">If <paramref name="method" /> is not supported by the service.</exception> |
1861 | | - </member> |
1862 | | - <member name="M:JSIStudios.SimpleRESTServices.Client.Json.JsonRestServices.Stream(System.Uri,JSIStudios.SimpleRESTServices.Client.HttpMethod,System.Func{System.Net.HttpWebResponse,System.Boolean,JSIStudios.SimpleRESTServices.Client.Response},System.IO.Stream,System.Int32,System.Int64,System.Collections.Generic.Dictionary{System.String,System.String},System.Collections.Generic.Dictionary{System.String,System.String},JSIStudios.SimpleRESTServices.Client.RequestSettings,System.Action{System.Int64})"> |
1863 | | - <summary> |
1864 | | - Executes a REST request with a <see cref="T:System.IO.Stream" /><paramref name="content" /> |
1865 | | - and user-defined callback function for constructing the resulting <see cref="T:JSIStudios.SimpleRESTServices.Client.Response" /> |
1866 | | - object. |
1867 | | - </summary> |
1868 | | - <param name="url">The base URI.</param> |
1869 | | - <param name="method">The HTTP method to use for the request.</param> |
1870 | | - <param name="responseBuilderCallback">A user-specified function used to construct the resulting <see cref="T:JSIStudios.SimpleRESTServices.Client.Response" /> |
1871 | | - object from the <see cref="T:System.Net.HttpWebResponse" /> and a Boolean value specifying whether or not a <see cref="T:System.Net.WebException" /> |
1872 | | - was thrown during the request. If this value is <c>null</c>, this method is equivalent to calling |
1873 | | - <see cref="M:JSIStudios.SimpleRESTServices.Client.RestServiceBase.Stream(System.Uri,JSIStudios.SimpleRESTServices.Client.HttpMethod,System.IO.Stream,System.Int32,System.Int64,System.Collections.Generic.Dictionary{System.String,System.String},System.Collections.Generic.Dictionary{System.String,System.String},JSIStudios.SimpleRESTServices.Client.RequestSettings,System.Action{System.Int64})" />.</param> |
1874 | | - <param name="content">A stream providing the body of the request.</param> |
1875 | | - <param name="bufferSize"> |
1876 | | - The size of the buffer used for copying data from <paramref name="content" /> to the |
1877 | | - HTTP request stream. |
1878 | | - </param> |
1879 | | - <param name="maxReadLength"> |
1880 | | - The maximum number of bytes to send with the request. This parameter is optional. |
1881 | | - If the value is 0, the request will include all data from <paramref name="content" />. |
1882 | | - </param> |
1883 | | - <param name="headers"> |
1884 | | - A collection of custom HTTP headers to include with the request. This parameter is |
1885 | | - optional. If the value is <c>null</c>, no custom headers are added to the HTTP request. |
1886 | | - </param> |
1887 | | - <param name="queryStringParameters"> |
1888 | | - A collection of parameters to add to the query string portion of the request URI. |
1889 | | - This parameter is optional. If the value is <c>null</c>, no parameters are added |
1890 | | - to the query string. |
1891 | | - </param> |
1892 | | - <param name="settings"> |
1893 | | - The settings to use for the request. This parameters is optional. If the value is |
1894 | | - <c>null</c>, an implementation-specific set of default settings will be used for the request. |
1895 | | - </param> |
1896 | | - <param name="progressUpdated"> |
1897 | | - A user-defined callback function for reporting progress of the send operation. |
1898 | | - This parameter is optional. If the value is <c>null</c>, the method does not report |
1899 | | - progress updates to the caller. |
1900 | | - </param> |
1901 | | - <param name="contents"> |
1902 | | - <markup> |
1903 | | - <include item="SMCMissingParamTag"> |
1904 | | - <parameter>param</parameter> |
1905 | | - <parameter>contents</parameter> |
1906 | | - <parameter>M:JSIStudios.SimpleRESTServices.Client.Json.JsonRestServices.Stream(System.Uri,JSIStudios.SimpleRESTServices.Client.HttpMethod,System.Func{System.Net.HttpWebResponse,System.Boolean,JSIStudios.SimpleRESTServices.Client.Response},System.IO.Stream,System.Int32,System.Int64,System.Collections.Generic.Dictionary{System.String,System.String},System.Collections.Generic.Dictionary{System.String,System.String},JSIStudios.SimpleRESTServices.Client.RequestSettings,System.Action{System.Int64})</parameter> |
1907 | | - </include> |
1908 | | - </markup> |
1909 | | - </param> |
1910 | | - <returns>Returns a <see cref="T:JSIStudios.SimpleRESTServices.Client.Response" /> object containing the HTTP status code, headers, |
1911 | | - and body from the REST response.</returns> |
1912 | | - <exception cref="T:System.ArgumentNullException"> |
1913 | | - If <paramref name="url" /> is <c>null</c>. |
1914 | | - <para>-or-</para><para>If <paramref name="content" /> is <c>null</c>.</para></exception> |
1915 | | - <exception cref="T:System.ArgumentOutOfRangeException"> |
1916 | | - If <paramref name="bufferSize" /> is less than or equal to zero. |
1917 | | - <para>-or-</para><para>If <paramref name="maxReadLength" /> is less than zero.</para></exception> |
1918 | | - <exception cref="T:System.NotSupportedException">If <paramref name="method" /> is not supported by the service.</exception> |
1919 | | - </member> |
1920 | 1840 | <member name="T:JSIStudios.SimpleRESTServices.Client.Json.JsonStringSerializer"> |
1921 | 1841 | <summary> |
1922 | 1842 | Provides a default implementation of <see cref="T:JSIStudios.SimpleRESTServices.Client.IStringSerializer" /> using JSON for |
|
0 commit comments