Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1543 lines
98 KiB

  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>System.Runtime.Remoting</name>
  5. </assembly>
  6. <members>
  7. <member name="T:System.Runtime.Remoting.Channels.CommonTransportKeys">
  8. <summary>
  9. <para>The transport keys associated with common values used by the channels.</para>
  10. </summary>
  11. </member>
  12. <member name="F:System.Runtime.Remoting.Channels.CommonTransportKeys.IPAddress">
  13. <summary>
  14. <para>The transport key associated with the IP address from which an incoming request arrived.</para>
  15. </summary>
  16. </member>
  17. <member name="F:System.Runtime.Remoting.Channels.CommonTransportKeys.ConnectionId">
  18. <summary>
  19. <para>The transport key associated with a unique ID given to each incoming socket connection.</para>
  20. </summary>
  21. </member>
  22. <member name="F:System.Runtime.Remoting.Channels.CommonTransportKeys.RequestUri">
  23. <summary>
  24. <para>The transport key associated with the URI that made the request.</para>
  25. </summary>
  26. </member>
  27. <member name="M:System.Runtime.Remoting.Channels.SocketHandler.ReadToByte(System.Byte,System.Runtime.Remoting.Channels.ValidateByteDelegate)">
  28. </member>
  29. <member name="T:System.Runtime.Remoting.Channels.Http.HttpChannel">
  30. <summary>
  31. <para>Provides an implementation for a sender-receiver channel
  32. that uses the HTTP protocol to transmit messages.</para>
  33. </summary>
  34. </member>
  35. <member name="M:System.Runtime.Remoting.Channels.Http.HttpChannel.#ctor">
  36. <summary>
  37. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpChannel" /> class, activating the
  38. client and server channels with default values.</para>
  39. </summary>
  40. </member>
  41. <member name="M:System.Runtime.Remoting.Channels.Http.HttpChannel.#ctor(System.Int32)">
  42. <summary>
  43. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpChannel" /> class, activating the
  44. underlying <see cref="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel" /> on the specified port.</para>
  45. </summary>
  46. <param name="port">The port on which to activate the underlying <see cref="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel" />.</param>
  47. </member>
  48. <member name="M:System.Runtime.Remoting.Channels.Http.HttpChannel.#ctor(System.Collections.IDictionary,System.Runtime.Remoting.Channels.IClientChannelSinkProvider,System.Runtime.Remoting.Channels.IServerChannelSinkProvider)">
  49. <summary>
  50. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpChannel" /> class with the given
  51. channel properties and specified <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSinkProvider" /> and <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSinkProvider" />.</para>
  52. </summary>
  53. <param name="properties">The channel properties with which the new instance of <see cref="T:System.Runtime.Remoting.Channels.Http.HttpChannel" /> should be initialized.</param>
  54. <param name="clientSinkProvider">The <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSinkProvider" /> that creates the client channel sinks for the underlying <see cref="T:System.Runtime.Remoting.Channels.Http.HttpClientChannel" /> through which remoting messages flow through.</param>
  55. <param name="serverSinkProvider">The <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSinkProvider" /> that creates server channel sinks for the underlying <see cref="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel" /> through which remoting messages flow through.</param>
  56. </member>
  57. <member name="M:System.Runtime.Remoting.Channels.Http.HttpChannel.Parse(System.String,System.String@)">
  58. <summary>
  59. <para> Extracts the channel URI
  60. and the remote well known object URI from the specified URL.</para>
  61. </summary>
  62. <param name="url">The URL from which to extract the URI of the remote well known object.</param>
  63. <param name=" objectURI">When this method returns, contains a <see cref="T:System.String" /> that holds the URI of the remote well known object. This parameter is passed uninitialized.</param>
  64. <returns>
  65. <para>The URI of the current channel.</para>
  66. </returns>
  67. </member>
  68. <member name="M:System.Runtime.Remoting.Channels.Http.HttpChannel.CreateMessageSink(System.String,System.Object,System.String@)">
  69. <summary>
  70. <para>Returns a channel message sink that delivers messages to the specified URL
  71. or channel data object. </para>
  72. </summary>
  73. <param name="url">The URL to which the new sink should deliver messages. Can be <see langword="null" />.</param>
  74. <param name="remoteChannelData">The channel data object of the remote host to which the new sink should deliver messages. Can be <see langword="null" />.</param>
  75. <param name="objectURI">When this method returns, contains a URI of the new channel message sink that delivers messages to the specified URL or channel data object. This parameter is passed uninitialized.</param>
  76. <returns>
  77. <para>A channel message sink that delivers messages to
  78. the specified URL or channel data object.</para>
  79. </returns>
  80. </member>
  81. <member name="M:System.Runtime.Remoting.Channels.Http.HttpChannel.GetUrlsForUri(System.String)">
  82. <summary>
  83. <para> Returns an array of all the
  84. URLs for an object with the specified URI,
  85. hosted on the current <see cref="T:System.Runtime.Remoting.Channels.Http.HttpChannel" />.
  86. </para>
  87. </summary>
  88. <param name="objectURI">The URI of the object for which URL's are required. </param>
  89. <returns>
  90. <para>An array of the URLs for an object with the specified
  91. URI, hosted on the current <see cref="T:System.Runtime.Remoting.Channels.Http.HttpChannel" /> .</para>
  92. </returns>
  93. </member>
  94. <member name="M:System.Runtime.Remoting.Channels.Http.HttpChannel.StartListening(System.Object)">
  95. <summary>
  96. <para> Instructs the current channel to start listening for requests.</para>
  97. </summary>
  98. <param name="data">Should always be <see langword="null" /> for <see cref="T:System.Runtime.Remoting.Channels.Http.HttpChannel" /> .</param>
  99. </member>
  100. <member name="M:System.Runtime.Remoting.Channels.Http.HttpChannel.StopListening(System.Object)">
  101. <summary>
  102. <para> Instructs the
  103. current channel to stop listening for requests.</para>
  104. </summary>
  105. <param name="data">Should always be <see langword="null" /> for <see cref="T:System.Runtime.Remoting.Channels.Http.HttpChannel" /> .</param>
  106. </member>
  107. <member name="M:System.Runtime.Remoting.Channels.Http.HttpChannel.AddHookChannelUri(System.String)">
  108. <summary>
  109. <para>Adds a URI on which the channel hook should listen.</para>
  110. </summary>
  111. <param name="channelUri">The channel URI on which the channel hook is listening.</param>
  112. </member>
  113. <member name="P:System.Runtime.Remoting.Channels.Http.HttpChannel.ChannelPriority">
  114. <summary>
  115. <para>Returns the priority of the current channel.</para>
  116. </summary>
  117. </member>
  118. <member name="P:System.Runtime.Remoting.Channels.Http.HttpChannel.ChannelName">
  119. <summary>
  120. <para>Gets the name of the current channel.</para>
  121. </summary>
  122. </member>
  123. <member name="P:System.Runtime.Remoting.Channels.Http.HttpChannel.ChannelData">
  124. <summary>
  125. <para> Gets the channel-specific data.</para>
  126. </summary>
  127. </member>
  128. <member name="P:System.Runtime.Remoting.Channels.Http.HttpChannel.ChannelScheme">
  129. <summary>
  130. <para>Gets the type of listener to hook into (for example "http").</para>
  131. </summary>
  132. </member>
  133. <member name="P:System.Runtime.Remoting.Channels.Http.HttpChannel.WantsToListen">
  134. <summary>
  135. <para>Gets a Boolean value indicating whether the current
  136. instance wants to be hooked into the
  137. outside listener service. </para>
  138. </summary>
  139. </member>
  140. <member name="P:System.Runtime.Remoting.Channels.Http.HttpChannel.ChannelSinkChain">
  141. <summary>
  142. <para>Gets the channel sink chain that the current channel is using.
  143. </para>
  144. </summary>
  145. </member>
  146. <member name="P:System.Runtime.Remoting.Channels.Http.HttpChannel.Properties">
  147. <summary>
  148. <para>Gets an <see cref="T:System.Collections.IDictionary" /> of the channel
  149. properties associated with the current channel.</para>
  150. </summary>
  151. </member>
  152. <member name="P:System.Runtime.Remoting.Channels.Http.HttpChannel.Item(System.Object)">
  153. <summary>
  154. <para>Gets or sets a channel property associated with the specified key.</para>
  155. </summary>
  156. <param name="key">The key with which the requested property is associated.</param>
  157. </member>
  158. <member name="P:System.Runtime.Remoting.Channels.Http.HttpChannel.Keys">
  159. <summary>
  160. <para> Gets an <see cref="T:System.Collections.ICollection" /> of keys with which
  161. the channel properties are associated.</para>
  162. </summary>
  163. </member>
  164. <member name="T:System.Runtime.Remoting.Channels.Http.HttpClientChannel">
  165. <summary>
  166. <para>Provides an implementation for a client channel that
  167. uses the HTTP protocol to transmit messages.</para>
  168. </summary>
  169. </member>
  170. <member name="M:System.Runtime.Remoting.Channels.Http.HttpClientChannel.#ctor">
  171. <summary>
  172. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpClientChannel" /> class
  173. with default values.</para>
  174. </summary>
  175. </member>
  176. <member name="M:System.Runtime.Remoting.Channels.Http.HttpClientChannel.#ctor(System.String,System.Runtime.Remoting.Channels.IClientChannelSinkProvider)">
  177. <summary>
  178. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpClientChannel" /> class
  179. with the specified channel name and <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSinkProvider" />.</para>
  180. </summary>
  181. <param name="name">The name of the new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpClientChannel" /> .</param>
  182. <param name=" sinkProvider">The <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSinkProvider" /> to use with the new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpClientChannel" />.</param>
  183. </member>
  184. <member name="M:System.Runtime.Remoting.Channels.Http.HttpClientChannel.#ctor(System.Collections.IDictionary,System.Runtime.Remoting.Channels.IClientChannelSinkProvider)">
  185. <summary>
  186. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpClientChannel" /> class with the specified
  187. channel properties and <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSinkProvider" />.</para>
  188. </summary>
  189. <param name="properties">An <see cref="T:System.Collections.IDictionary" /> of the channel properties that hold the configuration information for the current channel.</param>
  190. <param name=" sinkProvider">The <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSinkProvider" /> to use with the new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpClientChannel" />.</param>
  191. </member>
  192. <member name="M:System.Runtime.Remoting.Channels.Http.HttpClientChannel.Parse(System.String,System.String@)">
  193. <summary>
  194. <para> Extracts the channel
  195. URI and the remote well-known object URI from the specified URL.</para>
  196. </summary>
  197. <param name="url"> The URL from which to extract the URI of the remote well-known object.</param>
  198. <param name=" objectURI">When this method returns, contains a <see cref="T:System.String" /> that holds the URI of the remote well-known object. This parameter is passed uninitialized.</param>
  199. <returns>
  200. <para>The URI of the current channel, or <see langword="null " />if the specified URL is not an HTTP URL.</para>
  201. </returns>
  202. </member>
  203. <member name="M:System.Runtime.Remoting.Channels.Http.HttpClientChannel.CreateMessageSink(System.String,System.Object,System.String@)">
  204. <summary>
  205. <para>Returns a channel message sink that delivers messages to the specified URL
  206. or channel data object. </para>
  207. </summary>
  208. <param name="url">The URL to which the new sink will deliver messages. Can be <see langword="null" /> .</param>
  209. <param name="remoteChannelData">The channel data object of the remote host to which the new sink will deliver messages. Can be <see langword="null" /> .</param>
  210. <param name="objectURI">When this method returns, contains a URI of the new channel message sink that delivers messages to the specified URL or channel data object. This parameter is passed uninitialized.</param>
  211. <returns>
  212. <para>A channel message sink that delivers messages to
  213. the specified URL or channel data object.</para>
  214. </returns>
  215. </member>
  216. <member name="P:System.Runtime.Remoting.Channels.Http.HttpClientChannel.ChannelPriority">
  217. <summary>
  218. <para>Returns the priority of the current channel.</para>
  219. </summary>
  220. </member>
  221. <member name="P:System.Runtime.Remoting.Channels.Http.HttpClientChannel.ChannelName">
  222. <summary>
  223. <para>Gets the name of the current channel.</para>
  224. </summary>
  225. </member>
  226. <member name="P:System.Runtime.Remoting.Channels.Http.HttpClientChannel.Item(System.Object)">
  227. <summary>
  228. <para>Gets or sets a channel property associated with the specified key.</para>
  229. </summary>
  230. <param name="key"> The key the requested property is associated with.</param>
  231. </member>
  232. <member name="P:System.Runtime.Remoting.Channels.Http.HttpClientChannel.Keys">
  233. <summary>
  234. <para> Gets an <see cref="T:System.Collections.ICollection" /> of keys that the
  235. channel properties are associated with.</para>
  236. </summary>
  237. </member>
  238. <member name="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel">
  239. <summary>
  240. <para>Provides an implementation for a server channel that uses the HTTP protocol
  241. to transmit messages.</para>
  242. </summary>
  243. </member>
  244. <member name="M:System.Runtime.Remoting.Channels.Http.HttpServerChannel.#ctor">
  245. <summary>
  246. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel" /> class with default values.</para>
  247. </summary>
  248. </member>
  249. <member name="M:System.Runtime.Remoting.Channels.Http.HttpServerChannel.#ctor(System.Int32)">
  250. <summary>
  251. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel" /> class at the specified port.</para>
  252. </summary>
  253. <param name="port">The port at which to activate the new instance of <see cref="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel" />.</param>
  254. </member>
  255. <member name="M:System.Runtime.Remoting.Channels.Http.HttpServerChannel.#ctor(System.String,System.Int32)">
  256. <summary>
  257. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel" /> class with the given name
  258. at the specified port.</para>
  259. </summary>
  260. <param name="name">The name of the new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel" />.</param>
  261. <param name=" port">The port at which to activate the new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel" />.</param>
  262. </member>
  263. <member name="M:System.Runtime.Remoting.Channels.Http.HttpServerChannel.#ctor(System.String,System.Int32,System.Runtime.Remoting.Channels.IServerChannelSinkProvider)">
  264. <summary>
  265. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel" /> class at the specified
  266. port with the given name and <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSinkProvider" /> .</para>
  267. </summary>
  268. <param name="name">The name of the new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel" />.</param>
  269. <param name="port">The port at which to activate the new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel" />.</param>
  270. <param name=" sinkProvider">The <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSinkProvider" /> to use with the new instance of <see cref="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel" />.</param>
  271. </member>
  272. <member name="M:System.Runtime.Remoting.Channels.Http.HttpServerChannel.#ctor(System.Collections.IDictionary,System.Runtime.Remoting.Channels.IServerChannelSinkProvider)">
  273. <summary>
  274. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel" /> class with the specified
  275. channel properties and the provided <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSinkProvider" /> .</para>
  276. </summary>
  277. <param name="properties">An <see cref="T:System.Collections.IDictionary" /> of the channel properties that hold the configuration information for the current channel.</param>
  278. <param name=" sinkProvider">The <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSinkProvider" /> to use with the new instance of the <see cref="T:System.Runtime.Remoting.Channels.Http.HttpServerChannel" /> .</param>
  279. </member>
  280. <member name="M:System.Runtime.Remoting.Channels.Http.HttpServerChannel.Parse(System.String,System.String@)">
  281. <summary>
  282. <para> Extracts the channel
  283. URI and the remote well-known object URI from the specified URL.</para>
  284. </summary>
  285. <param name="url">The URL from which to extract the URIs.</param>
  286. <param name=" objectURI">When this method returns, contains a <see cref="T:System.String" /> that holds the URI of the remote well-known object. This parameter is passed uninitialized.</param>
  287. <returns>
  288. <para>The channel URI.</para>
  289. </returns>
  290. </member>
  291. <member name="M:System.Runtime.Remoting.Channels.Http.HttpServerChannel.GetChannelUri">
  292. <summary>
  293. <para>Returns the URI of the current channel.</para>
  294. </summary>
  295. <returns>
  296. <para>The URI of the current channel.</para>
  297. </returns>
  298. </member>
  299. <member name="M:System.Runtime.Remoting.Channels.Http.HttpServerChannel.GetUrlsForUri(System.String)">
  300. <summary>
  301. <para> Returns an array
  302. of all the URLs for an object with the specified URI,
  303. hosted on the current <see cref="T:System.Runtime.Remoting.Channels.Http.HttpChannel" />.
  304. </para>
  305. </summary>
  306. <param name="objectUri">The URI of the object for which URLs are required. </param>
  307. <returns>
  308. <para> An array of the URLs for an object
  309. with the specified URI, hosted on the current <see cref="T:System.Runtime.Remoting.Channels.Http.HttpChannel" /> .</para>
  310. </returns>
  311. </member>
  312. <member name="M:System.Runtime.Remoting.Channels.Http.HttpServerChannel.StartListening(System.Object)">
  313. <summary>
  314. <para> Instructs the current channel to start listening for requests.</para>
  315. </summary>
  316. <param name="data">Should always be <see langword="null" /> for <see cref="T:System.Runtime.Remoting.Channels.Http.HttpChannel" /> .</param>
  317. </member>
  318. <member name="M:System.Runtime.Remoting.Channels.Http.HttpServerChannel.StopListening(System.Object)">
  319. <summary>
  320. <para> Instructs the
  321. current channel to stop listening for requests.</para>
  322. </summary>
  323. <param name="data">Should always be <see langword="null" /> for <see cref="T:System.Runtime.Remoting.Channels.Http.HttpChannel" /> .</param>
  324. </member>
  325. <member name="M:System.Runtime.Remoting.Channels.Http.HttpServerChannel.AddHookChannelUri(System.String)">
  326. <summary>
  327. <para>Adds a URI on which the channel hook must listen.</para>
  328. </summary>
  329. <param name="channelUri">A URI on which the channel hook must listen.</param>
  330. </member>
  331. <member name="P:System.Runtime.Remoting.Channels.Http.HttpServerChannel.ChannelPriority">
  332. <summary>
  333. <para>Gets the priority of the channel.</para>
  334. </summary>
  335. </member>
  336. <member name="P:System.Runtime.Remoting.Channels.Http.HttpServerChannel.ChannelName">
  337. <summary>
  338. <para>Gets the name of the current channel.</para>
  339. </summary>
  340. </member>
  341. <member name="P:System.Runtime.Remoting.Channels.Http.HttpServerChannel.ChannelData">
  342. <summary>
  343. <para>
  344. Gets the channel specific data.</para>
  345. </summary>
  346. </member>
  347. <member name="P:System.Runtime.Remoting.Channels.Http.HttpServerChannel.ChannelScheme">
  348. <summary>
  349. Gets the type of listener to hook into (for example "http").
  350. </summary>
  351. </member>
  352. <member name="P:System.Runtime.Remoting.Channels.Http.HttpServerChannel.WantsToListen">
  353. <summary>
  354. <para>Gets a Boolean value indicating whether <see cref="T:System.Runtime.Remoting.Channels.IChannelReceiverHook" /> wants to be hooked into the
  355. outside listener service. </para>
  356. </summary>
  357. </member>
  358. <member name="P:System.Runtime.Remoting.Channels.Http.HttpServerChannel.ChannelSinkChain">
  359. <summary>
  360. <para>Gets the channel sink chain that the current channel is using.
  361. </para>
  362. </summary>
  363. </member>
  364. <member name="P:System.Runtime.Remoting.Channels.Http.HttpServerChannel.Item(System.Object)">
  365. <summary>
  366. <para>Gets or sets a channel property associated with the specified key.</para>
  367. </summary>
  368. <param name="key"> The key the requested property is associated with.</param>
  369. </member>
  370. <member name="P:System.Runtime.Remoting.Channels.Http.HttpServerChannel.Keys">
  371. <summary>
  372. <para> Gets an <see cref="T:System.Collections.ICollection" /> of keys the
  373. channel properties are associated with.</para>
  374. </summary>
  375. </member>
  376. <member name="T:System.Runtime.Remoting.Channels.Http.HttpRemotingHandler">
  377. </member>
  378. <member name="M:System.Runtime.Remoting.Channels.Http.HttpRemotingHandler.#ctor">
  379. </member>
  380. <member name="M:System.Runtime.Remoting.Channels.Http.HttpRemotingHandler.ProcessRequest(System.Web.HttpContext)">
  381. </member>
  382. <member name="P:System.Runtime.Remoting.Channels.Http.HttpRemotingHandler.IsReusable">
  383. </member>
  384. <member name="T:System.Runtime.Remoting.Channels.Http.HttpRemotingHandlerFactory">
  385. </member>
  386. <member name="M:System.Runtime.Remoting.Channels.Http.HttpRemotingHandlerFactory.GetHandler(System.Web.HttpContext,System.String,System.String,System.String)">
  387. </member>
  388. <member name="M:System.Runtime.Remoting.Channels.Http.HttpRemotingHandlerFactory.ReleaseHandler(System.Web.IHttpHandler)">
  389. </member>
  390. <member name="T:System.Runtime.Remoting.Channels.Tcp.TcpChannel">
  391. <summary>
  392. <para>Provides an implementation for a sender-receiver channel
  393. that uses the TCP protocol to transmit messages.</para>
  394. </summary>
  395. </member>
  396. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpChannel.#ctor">
  397. <summary>
  398. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpChannel" /> class, activating only a
  399. client channel, and not a server channel.</para>
  400. </summary>
  401. </member>
  402. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpChannel.#ctor(System.Int32)">
  403. <summary>
  404. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpChannel" /> class, activating a server
  405. channel at the specified port.</para>
  406. </summary>
  407. <param name="port">The port number at which to activate the TCP server channel.</param>
  408. </member>
  409. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpChannel.#ctor(System.Collections.IDictionary,System.Runtime.Remoting.Channels.IClientChannelSinkProvider,System.Runtime.Remoting.Channels.IServerChannelSinkProvider)">
  410. <summary>
  411. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpChannel" /> class with the provided
  412. channel properties, a <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSinkProvider" /> and
  413. a <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSinkProvider" />.</para>
  414. </summary>
  415. <param name="properties">An <see cref="T:System.Collections.IDictionary" /> of the channel properties which hold the configuration information for the current channel.</param>
  416. <param name=" clientSinkProvider">The <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSinkProvider" /> that creates the client channel sinks for the underlying <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpClientChannel" /> through which remoting messages flow through.</param>
  417. <param name=" serverSinkProvider">The <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSinkProvider" /> that creates server channel sinks for the underlying <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel" /> through which remoting messages flow through.</param>
  418. </member>
  419. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpChannel.Parse(System.String,System.String@)">
  420. <summary>
  421. <para> Extracts the channel URI
  422. and the remote well known object URI from the specified URL.</para>
  423. </summary>
  424. <param name="url">The URL from which to extract the URI of the remote well known object.</param>
  425. <param name=" objectURI">When this method returns, contains a <see cref="T:System.String" /> that holds the URI of the remote well known object. This parameter is passed uninitialized.</param>
  426. <returns>
  427. <para>The URI of the current channel.</para>
  428. </returns>
  429. </member>
  430. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpChannel.CreateMessageSink(System.String,System.Object,System.String@)">
  431. <summary>
  432. <para>Returns a channel message sink that delivers messages to the specified URL
  433. or channel data object. </para>
  434. </summary>
  435. <param name="url">The URL to which the new sink should deliver messages. Can be <see langword="null" />.</param>
  436. <param name="remoteChannelData">The channel data object of the remote host to which the new sink should deliver messages. Can be <see langword="null" />.</param>
  437. <param name="objectURI">When this method returns, contains a URI of the new channel message sink that delivers messages to the specified URL or channel data object. This parameter is passed uninitialized.</param>
  438. <returns>
  439. <para>A channel message sink, that delivers messages to
  440. the specified URL or channel data object.</para>
  441. </returns>
  442. </member>
  443. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpChannel.GetUrlsForUri(System.String)">
  444. <summary>
  445. <para> Returns an array
  446. of all the URLs for an object with the specified URI,
  447. hosted on the current <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpChannel" />.
  448. </para>
  449. </summary>
  450. <param name="objectURI">The URI of the object for which URLs are required. </param>
  451. <returns>
  452. <para> An array of the URLs for an object
  453. with the specified URI, hosted on the current <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpChannel" />.
  454. </para>
  455. </returns>
  456. </member>
  457. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpChannel.StartListening(System.Object)">
  458. <summary>
  459. <para> Instructs the current channel to start listening for requests.</para>
  460. </summary>
  461. <param name="data">Optional initialization information.</param>
  462. </member>
  463. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpChannel.StopListening(System.Object)">
  464. <summary>
  465. <para> Instructs the
  466. current channel to stop listening for requests.</para>
  467. </summary>
  468. <param name="data">Optional state information for the channel.</param>
  469. </member>
  470. <member name="P:System.Runtime.Remoting.Channels.Tcp.TcpChannel.ChannelPriority">
  471. <summary>
  472. <para>Returns the priority of the current channel.</para>
  473. </summary>
  474. </member>
  475. <member name="P:System.Runtime.Remoting.Channels.Tcp.TcpChannel.ChannelName">
  476. <summary>
  477. <para>Gets the name of the current channel.</para>
  478. </summary>
  479. </member>
  480. <member name="P:System.Runtime.Remoting.Channels.Tcp.TcpChannel.ChannelData">
  481. <summary>
  482. <para> Gets the channel-specific data.</para>
  483. </summary>
  484. </member>
  485. <member name="T:System.Runtime.Remoting.Channels.Tcp.TcpClientChannel">
  486. <summary>
  487. <para>Provides an implementation for a client channel that
  488. uses the TCP protocol to transmit messages.</para>
  489. </summary>
  490. </member>
  491. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpClientChannel.#ctor">
  492. <summary>
  493. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpClientChannel" /> class with default values.</para>
  494. </summary>
  495. </member>
  496. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpClientChannel.#ctor(System.String,System.Runtime.Remoting.Channels.IClientChannelSinkProvider)">
  497. <summary>
  498. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpClientChannel" /> class with the provided
  499. name and <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSinkProvider" /> .</para>
  500. </summary>
  501. <param name="name">The name of the new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpClientChannel" /> .</param>
  502. <param name=" sinkProvider">The <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSinkProvider" /> to use with the new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpClientChannel" />.</param>
  503. </member>
  504. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpClientChannel.#ctor(System.Collections.IDictionary,System.Runtime.Remoting.Channels.IClientChannelSinkProvider)">
  505. <summary>
  506. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpClientChannel" /> class with the specified
  507. channel properties and <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSinkProvider" /> .</para>
  508. </summary>
  509. <param name="properties">An <see cref="T:System.Collections.IDictionary" /> of the channel properties that hold the configuration information for the current channel.</param>
  510. <param name=" sinkProvider">The <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSinkProvider" /> to use with the new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpClientChannel" />.</param>
  511. </member>
  512. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpClientChannel.Parse(System.String,System.String@)">
  513. <summary>
  514. <para> Extracts the channel
  515. URI and the remote well-known object URI from the specified URL.</para>
  516. </summary>
  517. <param name="url">The URL from which to extract the URIs.</param>
  518. <param name=" objectURI">When this method returns, contains a <see cref="T:System.String" /> that holds the URI of the remote well-known object. This parameter is passed uninitialized.</param>
  519. <returns>
  520. <para>The channel URI.</para>
  521. </returns>
  522. </member>
  523. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpClientChannel.CreateMessageSink(System.String,System.Object,System.String@)">
  524. <summary>
  525. <para>Returns a channel message sink that delivers messages to the specified URL
  526. or channel data object. </para>
  527. </summary>
  528. <param name="url">The URL to which the new sink will deliver messages. Can be <see langword="null" /> .</param>
  529. <param name="remoteChannelData">The channel data object of the remote host to which the new sink will deliver messages. Can be <see langword="null" />.</param>
  530. <param name="objectURI">When this method returns, contains a URI of the new channel message sink that delivers messages to the specified URL or channel data object. This parameter is passed uninitialized.</param>
  531. <returns>
  532. <para>A channel message sink, that delivers messages to
  533. the specified URL or channel data object.</para>
  534. </returns>
  535. </member>
  536. <member name="P:System.Runtime.Remoting.Channels.Tcp.TcpClientChannel.ChannelPriority">
  537. <summary>
  538. <para>Returns the priority of the current channel.</para>
  539. </summary>
  540. </member>
  541. <member name="P:System.Runtime.Remoting.Channels.Tcp.TcpClientChannel.ChannelName">
  542. <summary>
  543. <para>Gets the name of the current channel.</para>
  544. </summary>
  545. </member>
  546. <member name="T:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel">
  547. <summary>
  548. <para>Provides an implementation for a server channel that
  549. uses the TCP protocol to transmit messages.</para>
  550. </summary>
  551. </member>
  552. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel.#ctor(System.Int32)">
  553. <summary>
  554. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel" /> class at the specified port.</para>
  555. </summary>
  556. <param name="port">The port at which to activate the new instance of <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel" />.</param>
  557. </member>
  558. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel.#ctor(System.String,System.Int32)">
  559. <summary>
  560. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel" /> class
  561. with the given name at the specified port.</para>
  562. </summary>
  563. <param name="name">The name of the new instance of <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel" />.</param>
  564. <param name=" port">The port at which to activate the new instance of <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel" />.</param>
  565. </member>
  566. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel.#ctor(System.String,System.Int32,System.Runtime.Remoting.Channels.IServerChannelSinkProvider)">
  567. <summary>
  568. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel" /> class at the specified
  569. port with the given name and <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSinkProvider" /> .</para>
  570. </summary>
  571. <param name="name">The name of the new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel" />.</param>
  572. <param name=" port">The port at which to activate the new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel" />.</param>
  573. <param name=" sinkProvider">The <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSinkProvider" /> to use with the new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel" /> .</param>
  574. </member>
  575. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel.#ctor(System.Collections.IDictionary,System.Runtime.Remoting.Channels.IServerChannelSinkProvider)">
  576. <summary>
  577. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel" /> class with the specified
  578. channel properties and the provided <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSinkProvider" /> .</para>
  579. </summary>
  580. <param name="properties">An <see cref="T:System.Collections.IDictionary" /> of the channel properties that hold the configuration information for the current channel.</param>
  581. <param name=" sinkProvider">The <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSinkProvider" /> to use with the new instance of the <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel" /> .</param>
  582. </member>
  583. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel.Parse(System.String,System.String@)">
  584. <summary>
  585. <para> Extracts the channel
  586. URI and the remote well-known object URI from the specified URL.</para>
  587. </summary>
  588. <param name="url"> The URL from which to extract the URI of the remote well-known object.</param>
  589. <param name=" objectURI">When this method returns, contains a <see cref="T:System.String" /> that holds the URI of the remote well-known object. This parameter is passed uninitialized.</param>
  590. <returns>
  591. <para>The URI of the current channel.</para>
  592. </returns>
  593. </member>
  594. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel.GetChannelUri">
  595. <summary>
  596. <para>Returns the URI of the current channel.</para>
  597. </summary>
  598. <returns>
  599. <para>The URI of the current channel.</para>
  600. </returns>
  601. </member>
  602. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel.GetUrlsForUri(System.String)">
  603. <summary>
  604. <para> Returns an array of all the
  605. URLs for an object with the specified URI,
  606. hosted on the current <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpChannel" />.
  607. </para>
  608. </summary>
  609. <param name="objectUri">The URI of the object for which URLs are required. </param>
  610. <returns>
  611. <para>An array of the URLs for an object with the specified
  612. URI, hosted on the current <see cref="T:System.Runtime.Remoting.Channels.Tcp.TcpChannel" />.
  613. </para>
  614. </returns>
  615. </member>
  616. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel.StartListening(System.Object)">
  617. <summary>
  618. <para>
  619. Instructs the current channel to start listening for requests.</para>
  620. </summary>
  621. <param name="data">Optional ininitialization information.</param>
  622. </member>
  623. <member name="M:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel.StopListening(System.Object)">
  624. <summary>
  625. <para> Instructs the
  626. current channel to stop listening for requests.</para>
  627. </summary>
  628. <param name="data">Optional state information for the channel.</param>
  629. </member>
  630. <member name="P:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel.ChannelPriority">
  631. <summary>
  632. <para>Returns the priority of the current channel.</para>
  633. </summary>
  634. </member>
  635. <member name="P:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel.ChannelName">
  636. <summary>
  637. <para>Gets the name of the current channel.</para>
  638. </summary>
  639. </member>
  640. <member name="P:System.Runtime.Remoting.Channels.Tcp.TcpServerChannel.ChannelData">
  641. <summary>
  642. <para>
  643. Gets the channel specific data.</para>
  644. </summary>
  645. </member>
  646. <member name="T:System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider">
  647. <summary>
  648. <para> Provides the implementation for the binary client
  649. formatter sink provider.</para>
  650. </summary>
  651. </member>
  652. <member name="M:System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider.#ctor">
  653. <summary>
  654. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider" /> class with default values.</para>
  655. </summary>
  656. </member>
  657. <member name="M:System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider.#ctor(System.Collections.IDictionary,System.Collections.ICollection)">
  658. <summary>
  659. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider" /> class with the given
  660. properties and provider data.</para>
  661. </summary>
  662. <param name="properties">An <see cref="T:System.Collections.IDictionary" /> of configuration properties to use with the new instance of <see cref="T:System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider" />.</param>
  663. <param name=" providerData">An <see cref="T:System.Collections.ICollection" /> of <see cref="T:System.Runtime.Remoting.Channels.SinkProviderData" /> objects containing provider data to use with the new instance of <see cref="T:System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider" />.</param>
  664. </member>
  665. <member name="M:System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider.CreateSink(System.Runtime.Remoting.Channels.IChannelSender,System.String,System.Object)">
  666. <summary>
  667. <para> Creates
  668. a sink chain.
  669. </para>
  670. </summary>
  671. <param name="channel">Channel for which this sink chain is being constructed. </param>
  672. <param name="url">URL of object to connect to or the channel URI for the target object. </param>
  673. <param name="remoteChannelData">
  674. <para>A channel data object describing a channel on the remote server. </para>
  675. </param>
  676. <returns>
  677. <para> The first sink of the newly formed channel sink chain,
  678. or <see langword="null" /> indicating that this provider will not or cannot provide a connection for this endpoint.
  679. </para>
  680. </returns>
  681. </member>
  682. <member name="P:System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider.Next">
  683. <summary>
  684. <para>Gets or sets the next <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSinkProvider" /> in
  685. the sink provider chain.</para>
  686. </summary>
  687. </member>
  688. <member name="T:System.Runtime.Remoting.Channels.BinaryClientFormatterSink">
  689. <summary>
  690. <para> Provides the implementation for a client formatter
  691. sink that uses the <see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" /> .</para>
  692. </summary>
  693. </member>
  694. <member name="M:System.Runtime.Remoting.Channels.BinaryClientFormatterSink.#ctor(System.Runtime.Remoting.Channels.IClientChannelSink)">
  695. <summary>
  696. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.BinaryClientFormatterSink" /> class.</para>
  697. </summary>
  698. <param name="nextSink">The next <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSink" /> in the sink chain.</param>
  699. </member>
  700. <member name="M:System.Runtime.Remoting.Channels.BinaryClientFormatterSink.SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)">
  701. <summary>
  702. <para>Synchronously processes the provided message.</para>
  703. </summary>
  704. <param name="msg">The message to process.</param>
  705. <returns>
  706. <para>The response to the processed message.</para>
  707. </returns>
  708. </member>
  709. <member name="M:System.Runtime.Remoting.Channels.BinaryClientFormatterSink.AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)">
  710. <summary>
  711. <para>Asynchronously processes the provided message.</para>
  712. </summary>
  713. <param name="msg">The message to process.</param>
  714. <param name=" replySink">The sink that will receive the reply to the provided message.</param>
  715. <returns>
  716. <para>An <see cref="T:System.Runtime.Remoting.Messaging.IMessageCtrl" /> that provides a way to
  717. control the asynchronous message after it has been dispatched.</para>
  718. </returns>
  719. </member>
  720. <member name="M:System.Runtime.Remoting.Channels.BinaryClientFormatterSink.ProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream,System.Runtime.Remoting.Channels.ITransportHeaders@,System.IO.Stream@)">
  721. <summary>
  722. <para> Requests message processing from the current sink.</para>
  723. </summary>
  724. <param name="msg">The message to process.</param>
  725. <param name="requestHeaders">The headers to add to the outgoing message heading to the server.</param>
  726. <param name="requestStream">The stream headed toward the transport sink.</param>
  727. <param name="responseHeaders">When this method returns, contains an <see cref="T:System.Runtime.Remoting.Channels.ITransportHeaders" /> interface that holds the headers that the server returned. This parameter is passed uninitialized.</param>
  728. <param name="responseStream">When this method returns, contains a <see cref="T:System.IO.Stream" /> coming back from the transport sink. This parameter is passed uninitialized.</param>
  729. </member>
  730. <member name="M:System.Runtime.Remoting.Channels.BinaryClientFormatterSink.AsyncProcessRequest(System.Runtime.Remoting.Channels.IClientChannelSinkStack,System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream)">
  731. <summary>
  732. <para>Requests asynchronous processing of a method call on the current sink.</para>
  733. </summary>
  734. <param name="sinkStack">A stack of channel sinks that called the current sink.</param>
  735. <param name=" msg">The message to process.</param>
  736. <param name=" headers">The headers to add to the outgoing message heading to the server.</param>
  737. <param name=" stream">The stream headed toward the transport sink.</param>
  738. </member>
  739. <member name="M:System.Runtime.Remoting.Channels.BinaryClientFormatterSink.AsyncProcessResponse(System.Runtime.Remoting.Channels.IClientResponseChannelSinkStack,System.Object,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream)">
  740. <summary>
  741. <para>Requests asynchronous processing of a response to a method call on the
  742. current sink.</para>
  743. </summary>
  744. <param name="sinkStack">A stack of sinks that called the current sink.</param>
  745. <param name=" state">Information associated with the current sink, generated on the request side, and needed on the response side.</param>
  746. <param name=" headers">The headers retrieved from the server response stream.</param>
  747. <param name=" stream">The stream coming back from the transport sink.</param>
  748. </member>
  749. <member name="M:System.Runtime.Remoting.Channels.BinaryClientFormatterSink.GetRequestStream(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders)">
  750. <summary>
  751. <para>Returns the <see cref="T:System.IO.Stream" /> onto which
  752. the provided message is to be serialized.</para>
  753. </summary>
  754. <param name="msg">The <see cref="T:System.Runtime.Remoting.Messaging.IMethodCallMessage" /> containing details about the method call.</param>
  755. <param name="headers">The headers to add to the outgoing message heading to the server.</param>
  756. <returns>
  757. <para>The <see cref="T:System.IO.Stream" /> onto which the provided
  758. message is to be serialized.</para>
  759. </returns>
  760. </member>
  761. <member name="P:System.Runtime.Remoting.Channels.BinaryClientFormatterSink.NextSink">
  762. <summary>
  763. <para>Gets the next <see cref="T:System.Runtime.Remoting.Messaging.IMessageSink" /> in the sink chain.</para>
  764. </summary>
  765. </member>
  766. <member name="P:System.Runtime.Remoting.Channels.BinaryClientFormatterSink.NextChannelSink">
  767. <summary>
  768. <para>Gets the next <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSink" /> in the sink chain.</para>
  769. </summary>
  770. </member>
  771. <member name="P:System.Runtime.Remoting.Channels.BinaryClientFormatterSink.Properties">
  772. <summary>
  773. <para>Gets an <see cref="T:System.Collections.IDictionary" /> of properties for the
  774. current channel sink.</para>
  775. </summary>
  776. </member>
  777. <member name="T:System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider">
  778. <summary>
  779. <para> Provides the implementation for the server formatter channel
  780. sink provider that uses the <see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" />.</para>
  781. </summary>
  782. </member>
  783. <member name="M:System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider.#ctor">
  784. <summary>
  785. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider" /> class with default values.</para>
  786. </summary>
  787. </member>
  788. <member name="M:System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider.#ctor(System.Collections.IDictionary,System.Collections.ICollection)">
  789. <summary>
  790. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider" /> class with the provided
  791. properties and provider data.</para>
  792. </summary>
  793. <param name="properties">An <see cref="T:System.Collections.IDictionary" /> of configuration properties to use with the new instance of <see cref="T:System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider" />.</param>
  794. <param name="providerData">An <see cref="T:System.Collections.ICollection" /> of <see cref="T:System.Runtime.Remoting.Channels.SinkProviderData" /> to use with the new instance of <see cref="T:System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider" />.</param>
  795. </member>
  796. <member name="M:System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider.GetChannelData(System.Runtime.Remoting.Channels.IChannelDataStore)">
  797. <summary>
  798. <para> Returns the channel data for the channel that the
  799. current sink is associated with.</para>
  800. </summary>
  801. <param name="channelData">An <see cref="T:System.Runtime.Remoting.Channels.IChannelDataStore" /> object in which the channel data is to be returned.</param>
  802. </member>
  803. <member name="M:System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider.CreateSink(System.Runtime.Remoting.Channels.IChannelReceiver)">
  804. <summary>
  805. <para>Creates a sink chain.
  806. </para>
  807. </summary>
  808. <param name="channel">The channel for which to create the channel sink chain.</param>
  809. <returns>
  810. <para> The first sink of the
  811. newly formed channel sink chain. </para>
  812. </returns>
  813. </member>
  814. <member name="P:System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider.Next">
  815. <summary>
  816. <para>Gets or sets the next <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSinkProvider" /> in the sink provider chain.</para>
  817. </summary>
  818. </member>
  819. <member name="T:System.Runtime.Remoting.Channels.BinaryServerFormatterSink">
  820. <summary>
  821. <para> Provides the implementation for a server formatter
  822. sink that uses the <see cref="T:System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" /> .</para>
  823. </summary>
  824. </member>
  825. <member name="M:System.Runtime.Remoting.Channels.BinaryServerFormatterSink.#ctor(System.Runtime.Remoting.Channels.BinaryServerFormatterSink.Protocol,System.Runtime.Remoting.Channels.IServerChannelSink,System.Runtime.Remoting.Channels.IChannelReceiver)">
  826. <summary>
  827. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.BinaryServerFormatterSink" /> class.</para>
  828. </summary>
  829. <param name="protocol">The <see cref="T:System.Runtime.Remoting.Channels.BinaryServerFormatterSink.Protocol" /> that will be used with the current instance of <see cref="T:System.Runtime.Remoting.Channels.BinaryServerFormatterSink" /> .</param>
  830. <param name=" nextSink">The next sink in the channel sink chain.</param>
  831. <param name=" receiver">Indicates the channel that will receive the messages serialized by the new instance of <see cref="T:System.Runtime.Remoting.Channels.BinaryServerFormatterSink" />.</param>
  832. </member>
  833. <member name="M:System.Runtime.Remoting.Channels.BinaryServerFormatterSink.ProcessMessage(System.Runtime.Remoting.Channels.IServerChannelSinkStack,System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream,System.Runtime.Remoting.Messaging.IMessage@,System.Runtime.Remoting.Channels.ITransportHeaders@,System.IO.Stream@)">
  834. <summary>
  835. <para> Requests message processing from the current sink.</para>
  836. </summary>
  837. <param name="sinkStack">A stack of channel sinks that called the current sink.</param>
  838. <param name="requestMsg">The message that contains the request.</param>
  839. <param name="requestHeaders">Headers retrieved from the incoming message from the client.</param>
  840. <param name="requestStream">The stream that needs to be processed and passed on to the deserialization sink.</param>
  841. <param name="responseMsg">When this method returns, contains an <see cref="T:System.Runtime.Remoting.Messaging.IMessage" /> that holds the response message. This parameter is passed uninitialized.</param>
  842. <param name="responseHeaders">When this method returns, contains an <see cref="T:System.Runtime.Remoting.Channels.ITransportHeaders" /> that holds the headers to add to return message heading to the client. This parameter is passed uninitialized. </param>
  843. <param name="responseStream">When this method returns, contains a <see cref="T:System.IO.Stream" /> that is heading to the transport sink. This parameter is passed uninitialized. </param>
  844. <returns>
  845. <para>A <see cref="T:System.Runtime.Remoting.Channels.ServerProcessing" /> status value that
  846. provides information about how the message was processed.</para>
  847. </returns>
  848. </member>
  849. <member name="M:System.Runtime.Remoting.Channels.BinaryServerFormatterSink.AsyncProcessResponse(System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack,System.Object,System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream)">
  850. <summary>
  851. <para> Requests processing of the response from a method call
  852. sent asynchronously.</para>
  853. </summary>
  854. <param name="sinkStack">A stack of sinks leading back to the server transport sink.</param>
  855. <param name="state">Information associated with the current sink, generated on the request side, and needed on the response side.</param>
  856. <param name="msg">The response message.</param>
  857. <param name="headers">The headers to add to the return message heading to the client.</param>
  858. <param name="stream">The stream heading back to the transport sink.</param>
  859. </member>
  860. <member name="M:System.Runtime.Remoting.Channels.BinaryServerFormatterSink.GetResponseStream(System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack,System.Object,System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders)">
  861. <summary>
  862. <para>Returns the <see cref="T:System.IO.Stream" /> onto which the provided
  863. response message is to be serialized.</para>
  864. </summary>
  865. <param name="sinkStack">A stack of sinks leading back to the server transport sink.</param>
  866. <param name=" state">Information associated with the current sink, generated on the request side, and needed on the response side.</param>
  867. <param name=" msg"> The response message to serialize. </param>
  868. <param name=" headers">The headers to put in the response stream to the client.</param>
  869. <returns>
  870. <para>The <see cref="T:System.IO.Stream" /> onto which the provided
  871. response message is to be serialized.</para>
  872. </returns>
  873. </member>
  874. <member name="P:System.Runtime.Remoting.Channels.BinaryServerFormatterSink.NextChannelSink">
  875. <summary>
  876. <para>Gets the next <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSink" /> in the sink chain.</para>
  877. </summary>
  878. </member>
  879. <member name="P:System.Runtime.Remoting.Channels.BinaryServerFormatterSink.Properties">
  880. <summary>
  881. <para>Gets an <see cref="T:System.Collections.IDictionary" /> of properties for the
  882. current channel sink.</para>
  883. </summary>
  884. </member>
  885. <member name="F:System.Runtime.Remoting.Channels.BinaryServerFormatterSink.Protocol.Http">
  886. <summary>
  887. <para> Indicates that the current formatter sink is using the HTTP
  888. protocol, and therefore requires special processing.</para>
  889. </summary>
  890. </member>
  891. <member name="F:System.Runtime.Remoting.Channels.BinaryServerFormatterSink.Protocol.Other">
  892. <summary>
  893. <para>Indicates that a protocol other than HTTP is used with
  894. the current formatter sink.</para>
  895. </summary>
  896. </member>
  897. <member name="T:System.Runtime.Remoting.Channels.SoapClientFormatterSinkProvider">
  898. <summary>
  899. <para> Provides the implementation for a client
  900. formatter sink provider.</para>
  901. </summary>
  902. </member>
  903. <member name="M:System.Runtime.Remoting.Channels.SoapClientFormatterSinkProvider.#ctor">
  904. <summary>
  905. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.SoapClientFormatterSinkProvider" /> class with default values.</para>
  906. </summary>
  907. </member>
  908. <member name="M:System.Runtime.Remoting.Channels.SoapClientFormatterSinkProvider.#ctor(System.Collections.IDictionary,System.Collections.ICollection)">
  909. <summary>
  910. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.SoapClientFormatterSinkProvider" /> class with the given
  911. properties and provider data.</para>
  912. </summary>
  913. <param name="properties">An <see cref="T:System.Collections.IDictionary" /> of configuration properties to use with the new instance of <see cref="T:System.Runtime.Remoting.Channels.SoapClientFormatterSinkProvider" />.</param>
  914. <param name=" providerData">An <see cref="T:System.Collections.ICollection" /> of provider data to use with the new instance of <see cref="T:System.Runtime.Remoting.Channels.SoapClientFormatterSinkProvider" />.</param>
  915. </member>
  916. <member name="M:System.Runtime.Remoting.Channels.SoapClientFormatterSinkProvider.CreateSink(System.Runtime.Remoting.Channels.IChannelSender,System.String,System.Object)">
  917. <summary>
  918. <para> Creates
  919. a sink chain.
  920. </para>
  921. </summary>
  922. <param name="channel">Channel for which this sink chain is being constructed. </param>
  923. <param name="url">URL of object to connect to or the channel URI for the target object. </param>
  924. <param name="remoteChannelData">
  925. <para>A channel data object describing a channel on the remote server. </para>
  926. </param>
  927. <returns>
  928. <para> The first sink of the newly formed channel sink chain,
  929. or <see langword="null" /> indicating that this provider will not or cannot provide a connection for this endpoint.
  930. </para>
  931. </returns>
  932. </member>
  933. <member name="P:System.Runtime.Remoting.Channels.SoapClientFormatterSinkProvider.Next">
  934. <summary>
  935. <para>Gets or sets the next <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSinkProvider" /> in
  936. the sink provider chain.</para>
  937. </summary>
  938. </member>
  939. <member name="T:System.Runtime.Remoting.Channels.SoapClientFormatterSink">
  940. <summary>
  941. <para> Provides the implementation for a client formatter
  942. sink that uses the <see cref="T:System.Runtime.Serialization.Formatters.Soap.SoapFormatter" /> .</para>
  943. </summary>
  944. </member>
  945. <member name="M:System.Runtime.Remoting.Channels.SoapClientFormatterSink.#ctor(System.Runtime.Remoting.Channels.IClientChannelSink)">
  946. <summary>
  947. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.SoapClientFormatterSink" /> class.</para>
  948. </summary>
  949. <param name="nextSink">The next sink in the channel sink chain.</param>
  950. </member>
  951. <member name="M:System.Runtime.Remoting.Channels.SoapClientFormatterSink.SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)">
  952. <summary>
  953. <para>Synchronously processes the provided message.</para>
  954. </summary>
  955. <param name="msg">The message to process.</param>
  956. <returns>
  957. <para>The response to the processed message.</para>
  958. </returns>
  959. </member>
  960. <member name="M:System.Runtime.Remoting.Channels.SoapClientFormatterSink.AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)">
  961. <summary>
  962. <para>Asynchronously processes the provided message.</para>
  963. </summary>
  964. <param name="msg">The message to process.</param>
  965. <param name=" replySink">The sink that will receive the reply to the provided message.</param>
  966. <returns>
  967. <para>An <see cref="T:System.Runtime.Remoting.Messaging.IMessageCtrl" /> that provides a way to
  968. control the asynchronous message after it has been dispatched.</para>
  969. </returns>
  970. </member>
  971. <member name="M:System.Runtime.Remoting.Channels.SoapClientFormatterSink.ProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream,System.Runtime.Remoting.Channels.ITransportHeaders@,System.IO.Stream@)">
  972. <summary>
  973. <para> Requests message processing from the current sink.</para>
  974. </summary>
  975. <param name="msg">The message to process.</param>
  976. <param name="requestHeaders">The headers to add to the outgoing message heading to the server.</param>
  977. <param name="requestStream">The stream headed toward the transport sink.</param>
  978. <param name="responseHeaders">When this method returns, contains an <see cref="T:System.Runtime.Remoting.Channels.ITransportHeaders" /> interface that holds the headers that the server returned. This parameter is passed uninitialized.</param>
  979. <param name="responseStream">When this method returns, contains a <see cref="T:System.IO.Stream" /> coming back from the transport sink. This parameter is passed uninitialized.</param>
  980. </member>
  981. <member name="M:System.Runtime.Remoting.Channels.SoapClientFormatterSink.AsyncProcessRequest(System.Runtime.Remoting.Channels.IClientChannelSinkStack,System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream)">
  982. <summary>
  983. <para>Requests asynchronous processing of a method call on the current sink.</para>
  984. </summary>
  985. <param name="sinkStack">A stack of channel sinks that called the current sink.</param>
  986. <param name=" msg">The message to process.</param>
  987. <param name=" headers">The headers to add to the outgoing message heading to the server.</param>
  988. <param name=" stream">The stream headed to the transport sink.</param>
  989. </member>
  990. <member name="M:System.Runtime.Remoting.Channels.SoapClientFormatterSink.AsyncProcessResponse(System.Runtime.Remoting.Channels.IClientResponseChannelSinkStack,System.Object,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream)">
  991. <summary>
  992. <para>Requests asynchronous processing of a response to a method call on the
  993. current sink.</para>
  994. </summary>
  995. <param name="sinkStack">A stack of sinks that called the current sink.</param>
  996. <param name=" state">The state associated with the current sink.</param>
  997. <param name=" headers">The headers retrieved from the server response stream.</param>
  998. <param name=" stream">The stream coming back from the transport sink.</param>
  999. </member>
  1000. <member name="M:System.Runtime.Remoting.Channels.SoapClientFormatterSink.GetRequestStream(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders)">
  1001. <summary>
  1002. <para>Returns the <see cref="T:System.IO.Stream" /> onto which
  1003. the provided message is to be serialized.</para>
  1004. </summary>
  1005. <param name="msg">The <see cref="T:System.Runtime.Remoting.Messaging.IMethodCallMessage" /> containing details about the method call.</param>
  1006. <param name="headers">The headers to add to the outgoing message heading to the server.</param>
  1007. <returns>
  1008. <para>The <see cref="T:System.IO.Stream" /> onto which the provided
  1009. message is to be serialized.</para>
  1010. </returns>
  1011. </member>
  1012. <member name="P:System.Runtime.Remoting.Channels.SoapClientFormatterSink.NextSink">
  1013. <summary>
  1014. <para>Gets the next <see cref="T:System.Runtime.Remoting.Messaging.IMessageSink" /> in the sink chain.</para>
  1015. </summary>
  1016. </member>
  1017. <member name="P:System.Runtime.Remoting.Channels.SoapClientFormatterSink.NextChannelSink">
  1018. <summary>
  1019. <para>Gets the next <see cref="T:System.Runtime.Remoting.Channels.IClientChannelSink" /> in the sink chain.</para>
  1020. </summary>
  1021. </member>
  1022. <member name="P:System.Runtime.Remoting.Channels.SoapClientFormatterSink.Properties">
  1023. <summary>
  1024. <para>Gets an <see cref="T:System.Collections.IDictionary" /> of properties for the
  1025. current channel sink.</para>
  1026. </summary>
  1027. </member>
  1028. <member name="T:System.Runtime.Remoting.Channels.SoapServerFormatterSinkProvider">
  1029. <summary>
  1030. <para> Provides the implementation for a server formatter channel
  1031. sink provider that uses the <see cref="T:System.Runtime.Serialization.Formatters.Soap.SoapFormatter" />.
  1032. </para>
  1033. </summary>
  1034. </member>
  1035. <member name="M:System.Runtime.Remoting.Channels.SoapServerFormatterSinkProvider.#ctor">
  1036. <summary>
  1037. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.SoapServerFormatterSinkProvider" /> class with default values.</para>
  1038. </summary>
  1039. </member>
  1040. <member name="M:System.Runtime.Remoting.Channels.SoapServerFormatterSinkProvider.#ctor(System.Collections.IDictionary,System.Collections.ICollection)">
  1041. <summary>
  1042. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.SoapServerFormatterSinkProvider" /> class with the provided
  1043. properties and provider data.</para>
  1044. </summary>
  1045. <param name="properties">An <see cref="T:System.Collections.IDictionary" /> of configuration properties to use with the new instance of <see cref="T:System.Runtime.Remoting.Channels.SoapClientFormatterSinkProvider" />.</param>
  1046. <param name="providerData">An <see cref="T:System.Collections.ICollection" /> of provider data to use with the new instance of <see cref="T:System.Runtime.Remoting.Channels.SoapClientFormatterSinkProvider" />.</param>
  1047. </member>
  1048. <member name="M:System.Runtime.Remoting.Channels.SoapServerFormatterSinkProvider.GetChannelData(System.Runtime.Remoting.Channels.IChannelDataStore)">
  1049. <summary>
  1050. <para> Returns the channel data for the channel that the
  1051. current sink is associated with.</para>
  1052. </summary>
  1053. <param name="channelData">An <see cref="T:System.Runtime.Remoting.Channels.IChannelDataStore" /> object in which the channel data is to be returned.</param>
  1054. </member>
  1055. <member name="M:System.Runtime.Remoting.Channels.SoapServerFormatterSinkProvider.CreateSink(System.Runtime.Remoting.Channels.IChannelReceiver)">
  1056. <summary>
  1057. <para>Creates a sink chain.
  1058. </para>
  1059. </summary>
  1060. <param name="channel">The channel for which to create the channel sink chain.</param>
  1061. <returns>
  1062. <para> The first sink of the
  1063. newly formed channel sink chain. </para>
  1064. </returns>
  1065. </member>
  1066. <member name="P:System.Runtime.Remoting.Channels.SoapServerFormatterSinkProvider.Next">
  1067. <summary>
  1068. <para>Gets or sets the next <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSinkProvider" /> in the sink provider chain.</para>
  1069. </summary>
  1070. </member>
  1071. <member name="T:System.Runtime.Remoting.Channels.SoapServerFormatterSink">
  1072. <summary>
  1073. <para> Provides the implementation for a server formatter
  1074. sink that uses the <see cref="T:System.Runtime.Serialization.Formatters.Soap.SoapFormatter" /> .</para>
  1075. </summary>
  1076. </member>
  1077. <member name="M:System.Runtime.Remoting.Channels.SoapServerFormatterSink.#ctor(System.Runtime.Remoting.Channels.SoapServerFormatterSink.Protocol,System.Runtime.Remoting.Channels.IServerChannelSink,System.Runtime.Remoting.Channels.IChannelReceiver)">
  1078. <summary>
  1079. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.SoapServerFormatterSink" /> class.</para>
  1080. </summary>
  1081. <param name="protocol">The <see cref="T:System.Runtime.Remoting.Channels.BinaryServerFormatterSink.Protocol" /> that will be used with the current instance of <see cref="T:System.Runtime.Remoting.Channels.BinaryServerFormatterSink" /> .</param>
  1082. <param name=" nextSink">The next sink in the channel sink chain.</param>
  1083. <param name=" receiver">Indicates the channel that will receive the messages serialized by the new instance of <see cref="T:System.Runtime.Remoting.Channels.BinaryServerFormatterSink" />.</param>
  1084. </member>
  1085. <member name="M:System.Runtime.Remoting.Channels.SoapServerFormatterSink.ProcessMessage(System.Runtime.Remoting.Channels.IServerChannelSinkStack,System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream,System.Runtime.Remoting.Messaging.IMessage@,System.Runtime.Remoting.Channels.ITransportHeaders@,System.IO.Stream@)">
  1086. <summary>
  1087. <para> Requests message processing from the current sink.</para>
  1088. </summary>
  1089. <param name="sinkStack">The stack of sinks that transports the message.</param>
  1090. <param name="requestMsg">The message that contains the request.</param>
  1091. <param name="requestHeaders">Headers retrieved from the incoming message from the client.</param>
  1092. <param name="requestStream">The stream that needs to be processed and passed on to the deserialization sink.</param>
  1093. <param name="responseMsg">When this method returns, contains an <see cref="T:System.Runtime.Remoting.Messaging.IMessage" /> that holds the response message. This parameter is passed uninitialized.</param>
  1094. <param name="responseHeaders">When this method returns, contains an <see cref="T:System.Runtime.Remoting.Channels.ITransportHeaders" /> that holds the headers to add to the return message heading to the client. This parameter is passed uninitialized. </param>
  1095. <param name="responseStream">When this method returns, contains a <see cref="T:System.IO.Stream" /> that is heading back to the transport sink. This parameter is passed uninitialized. </param>
  1096. <returns>
  1097. <para>A <see cref="T:System.Runtime.Remoting.Channels.ServerProcessing" /> status value that
  1098. provides information about how the message was processed.</para>
  1099. </returns>
  1100. </member>
  1101. <member name="M:System.Runtime.Remoting.Channels.SoapServerFormatterSink.AsyncProcessResponse(System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack,System.Object,System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream)">
  1102. <summary>
  1103. <para>Requests processing from the current sink of the response from a method call
  1104. sent asynchronously.</para>
  1105. </summary>
  1106. <param name="sinkStack">A stack of sinks leading back to the server transport sink.</param>
  1107. <param name="state">Information associated with the current sink, generated on the request side, and needed on the response side.</param>
  1108. <param name="msg">The response message.</param>
  1109. <param name="headers">The headers to add to the return message heading to the client.</param>
  1110. <param name="stream">The stream heading back to the transport sink.</param>
  1111. </member>
  1112. <member name="M:System.Runtime.Remoting.Channels.SoapServerFormatterSink.GetResponseStream(System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack,System.Object,System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders)">
  1113. <summary>
  1114. <para>Returns the <see cref="T:System.IO.Stream" /> onto which the provided
  1115. response message is to be serialized.</para>
  1116. </summary>
  1117. <param name="sinkStack">A stack of sinks leading back to the server transport sink.</param>
  1118. <param name=" state">Information associated with the current sink, generated on the request side, and needed on the response side.</param>
  1119. <param name=" msg">The response message that is to be serialized. </param>
  1120. <param name=" headers">The headers to put in the response stream to the client.</param>
  1121. <returns>
  1122. <para>The <see cref="T:System.IO.Stream" /> onto which the provided
  1123. response message is to be serialized.</para>
  1124. </returns>
  1125. </member>
  1126. <member name="P:System.Runtime.Remoting.Channels.SoapServerFormatterSink.NextChannelSink">
  1127. <summary>
  1128. <para>Gets the next <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSink" /> in the sink chain.</para>
  1129. </summary>
  1130. </member>
  1131. <member name="P:System.Runtime.Remoting.Channels.SoapServerFormatterSink.Properties">
  1132. <summary>
  1133. <para>Gets an <see cref="T:System.Collections.IDictionary" /> of properties for the
  1134. current channel sink.</para>
  1135. </summary>
  1136. </member>
  1137. <member name="F:System.Runtime.Remoting.Channels.SoapServerFormatterSink.Protocol.Http">
  1138. <summary>
  1139. <para> Indicates that the current formatter sink is using the HTTP
  1140. protocol, and therefore requires special processing.</para>
  1141. </summary>
  1142. </member>
  1143. <member name="F:System.Runtime.Remoting.Channels.SoapServerFormatterSink.Protocol.Other">
  1144. <summary>
  1145. <para>Indicates that a protocol other than HTTP is used with
  1146. the current formatter sink.</para>
  1147. </summary>
  1148. </member>
  1149. <member name="T:System.Runtime.Remoting.MetadataServices.MetaData">
  1150. <summary>
  1151. <para>Provides methods that allow you to work with XML schema.</para>
  1152. </summary>
  1153. </member>
  1154. <member name="M:System.Runtime.Remoting.MetadataServices.MetaData.ConvertTypesToSchemaToFile(System.Type[],System.Runtime.Remoting.MetadataServices.SdlType,System.String)">
  1155. <summary>
  1156. <para>Converts the specified object types to XML schema, and writes it to a file
  1157. specified by name.</para>
  1158. </summary>
  1159. <param name="types">The object types to convert to XML schema.</param>
  1160. <param name=" sdlType">The type of service description language to use for the XML schema.</param>
  1161. <param name=" path">The path of the XML file.</param>
  1162. </member>
  1163. <member name="M:System.Runtime.Remoting.MetadataServices.MetaData.ConvertTypesToSchemaToStream(System.Type[],System.Runtime.Remoting.MetadataServices.SdlType,System.IO.Stream)">
  1164. <summary>
  1165. <para> Converts the specified object types to XML schema, and writes it to
  1166. a specified stream.</para>
  1167. </summary>
  1168. <param name="types">The object types to convert to XML schema.</param>
  1169. <param name=" sdlType">The type of service description language to use for the XML schema.</param>
  1170. <param name=" outputStream">The <see cref="T:System.IO.Stream" /> the schema is written to.</param>
  1171. </member>
  1172. <member name="M:System.Runtime.Remoting.MetadataServices.MetaData.ConvertTypesToSchemaToFile(System.Runtime.Remoting.MetadataServices.ServiceType[],System.Runtime.Remoting.MetadataServices.SdlType,System.String)">
  1173. <summary>
  1174. <para>Converts the specified service types to XML schema, and writes it to a file
  1175. specified by name.</para>
  1176. </summary>
  1177. <param name="types">The <see cref="T:System.Runtime.Remoting.MetadataServices.ServiceType" /> instances to convert to XML schema.</param>
  1178. <param name=" sdlType">The type of service description language to use for the XML schema.</param>
  1179. <param name=" path">The path of the XML file.</param>
  1180. </member>
  1181. <member name="M:System.Runtime.Remoting.MetadataServices.MetaData.ConvertTypesToSchemaToStream(System.Runtime.Remoting.MetadataServices.ServiceType[],System.Runtime.Remoting.MetadataServices.SdlType,System.IO.Stream)">
  1182. <summary>
  1183. <para> Converts the specified service types to XML schema, and writes it to
  1184. a specified stream.</para>
  1185. </summary>
  1186. <param name="serviceTypes">The <see cref="T:System.Runtime.Remoting.MetadataServices.ServiceType" /> instances to convert to XML schema.</param>
  1187. <param name=" sdlType">The type of service description language to use for the XML schema.</param>
  1188. <param name=" outputStream">The <see cref="T:System.IO.Stream" /> the schema is written to.</param>
  1189. </member>
  1190. <member name="M:System.Runtime.Remoting.MetadataServices.MetaData.RetrieveSchemaFromUrlToStream(System.String,System.IO.Stream)">
  1191. <summary>
  1192. <para>Downloads the XML schema from a URL, and writes it to the specified stream.</para>
  1193. </summary>
  1194. <param name="url"> The URL where the XML schema is located.</param>
  1195. <param name=" outputStream">The <see cref="T:System.IO.Stream" /> the schema is written to.</param>
  1196. </member>
  1197. <member name="M:System.Runtime.Remoting.MetadataServices.MetaData.RetrieveSchemaFromUrlToFile(System.String,System.String)">
  1198. <summary>
  1199. <para> Downloads the XML schema from a URL, and writes it to the specified file.</para>
  1200. </summary>
  1201. <param name="url">The URL where the XML schema is located.</param>
  1202. <param name=" path">The path of the file the schema is written to.</param>
  1203. </member>
  1204. <member name="M:System.Runtime.Remoting.MetadataServices.MetaData.ConvertSchemaStreamToCodeSourceStream(System.Boolean,System.String,System.IO.Stream,System.Collections.ArrayList,System.String,System.String)">
  1205. <summary>
  1206. <para>Converts the specified schema definition into C# proxy source code for a
  1207. remote object located at the specified URL and in the provided class
  1208. namespace.</para>
  1209. </summary>
  1210. <param name="clientProxy">Indicates the type of proxy to generate. If <see langword="true" />, generates a simple proxy (also known as wrapped proxy) that automatically loads the channels, exposes all the methods of the remote object, and provides access to the channel properties. If <see langword="false" /> , generates a transparent proxy that exposes all the methods of the remote object.</param>
  1211. <param name=" outputDirectory">The directory where the new C# source code files with the proxy are created.</param>
  1212. <param name=" inputStream">The input stream containing the schema definition in Web Services Description Language (WSDL) format.</param>
  1213. <param name=" outCodeStreamList">The list of file names for the code streams that are generated. Note that the <see cref="M:System.Runtime.Remoting.MetadataServices.MetaData.ConvertSchemaStreamToCodeSourceStream(System.Boolean,System.String,System.IO.Stream,System.Collections.ArrayList,System.String,System.String)" /> method can create multiple source code streams.</param>
  1214. <param name=" proxyUrl">The URL where the target remote object represented by the new proxy will be located.</param>
  1215. <param name=" proxyNamespace">The namespace of the newly created proxy. </param>
  1216. </member>
  1217. <member name="M:System.Runtime.Remoting.MetadataServices.MetaData.ConvertSchemaStreamToCodeSourceStream(System.Boolean,System.String,System.IO.Stream,System.Collections.ArrayList,System.String)">
  1218. <summary>
  1219. <para>Converts the specified schema definition into C# proxy
  1220. source code for a remote object located at the specified URL.</para>
  1221. </summary>
  1222. <param name="clientProxy">Indicates the type of proxy to generate. If <see langword="true" />, generates a simple proxy (also known as wrapped proxy) that automatically loads the channels, exposes all the methods of the remote object, and provides access to the channel properties. If <see langword="false" /> , generates a transparent proxy that exposes all the methods of the remote object.</param>
  1223. <param name=" outputDirectory"> The directory where the new C# source code files with the proxy are created.</param>
  1224. <param name=" inputStream">The input stream containing the schema definition in Web Services Description Language (WSDL) format.</param>
  1225. <param name="outCodeStreamList">The list of file names for the code streams that are generated. Note that the <see cref="M:System.Runtime.Remoting.MetadataServices.MetaData.ConvertSchemaStreamToCodeSourceStream(System.Boolean,System.String,System.IO.Stream,System.Collections.ArrayList,System.String,System.String)" /> method can create multiple source code streams.</param>
  1226. <param name=" proxyUrl">The URL where the target remote object represented by the new proxy will be located.</param>
  1227. </member>
  1228. <member name="M:System.Runtime.Remoting.MetadataServices.MetaData.ConvertSchemaStreamToCodeSourceStream(System.Boolean,System.String,System.IO.Stream,System.Collections.ArrayList)">
  1229. <summary>
  1230. <para>Converts the specified schema definition into C# proxy source code. </para>
  1231. </summary>
  1232. <param name="clientProxy">Indicates the type of proxy to generate. If <see langword="true" />, generates a simple proxy (also known as wrapped proxy) that automatically loads the channels, exposes all the methods of the remote object, and provides access to the channel properties. If <see langword="false" /> , generates a transparent proxy that exposes all the methods of the remote object.</param>
  1233. <param name=" outputDirectory"> The directory where the new C# source code files with the proxy are created.</param>
  1234. <param name=" inputStream">The input stream containing the schema definition in Web Services Description Language (WSDL) format.</param>
  1235. <param name=" outCodeStreamList">The list of file names for the code streams that are generated. Note that the <see cref="M:System.Runtime.Remoting.MetadataServices.MetaData.ConvertSchemaStreamToCodeSourceStream(System.Boolean,System.String,System.IO.Stream,System.Collections.ArrayList,System.String,System.String)" /> method can create multiple source code streams.</param>
  1236. </member>
  1237. <member name="M:System.Runtime.Remoting.MetadataServices.MetaData.ConvertCodeSourceStreamToAssemblyFile(System.Collections.ArrayList,System.String,System.String)">
  1238. <summary>
  1239. <para>Compiles specified code source streams into a run-time assembly file.</para>
  1240. </summary>
  1241. <param name="outCodeStreamList">An <see cref="T:System.Collections.ArrayList" /> of streams with the source code.</param>
  1242. <param name=" assemblyPath">The location where the new run-time assembly is generated.</param>
  1243. <param name=" strongNameFilename">The strong name to compile into the new run-time assembly. Can be <see cref="F:System.String.Empty" qualify="true" /> .</param>
  1244. </member>
  1245. <member name="M:System.Runtime.Remoting.MetadataServices.MetaData.ConvertCodeSourceFileToAssemblyFile(System.String,System.String,System.String)">
  1246. <summary>
  1247. <para> Compiles
  1248. a specified code source file
  1249. into a run-time assembly file.</para>
  1250. </summary>
  1251. <param name="codePath">The path to the file containing the source code.</param>
  1252. <param name=" assemblyPath">The location where the new run-time assembly is generated.</param>
  1253. <param name=" strongNameFilename">The strong name to compile into the new assembly. Can be <see cref="F:System.String.Empty" qualify="true" /> .</param>
  1254. </member>
  1255. <member name="M:System.Runtime.Remoting.MetadataServices.MetaData.SaveStreamToFile(System.IO.Stream,System.String)">
  1256. <summary>
  1257. <para>Saves the input stream to a file with the specified name.</para>
  1258. </summary>
  1259. <param name="inputStream">The stream to write to the specified file.</param>
  1260. <param name=" path">The file the input stream is written to.</param>
  1261. </member>
  1262. <member name="T:System.Runtime.Remoting.MetadataServices.ServiceType">
  1263. <summary>
  1264. <para>Associates a well-known object type that is passed to the Web Services Description Language (WSDL) generator with a remote
  1265. endpoint that can process messages sent to a method on the type.</para>
  1266. </summary>
  1267. </member>
  1268. <member name="M:System.Runtime.Remoting.MetadataServices.ServiceType.#ctor(System.Type)">
  1269. <summary>
  1270. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.MetadataServices.ServiceType" />class with the object
  1271. <see cref="T:System.Type" /> that is passed to the Web
  1272. Services Description Language (WSDL) generator.</para>
  1273. </summary>
  1274. <param name="type">The object <see cref="T:System.Type" /> that is passed to the WSDL generator.</param>
  1275. </member>
  1276. <member name="M:System.Runtime.Remoting.MetadataServices.ServiceType.#ctor(System.Type,System.String)">
  1277. <summary>
  1278. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.MetadataServices.ServiceType" /> class with the URL and
  1279. <see cref="T:System.Type" /> of an object that is passed
  1280. to the Web Services Description Language (WSDL) generator.</para>
  1281. </summary>
  1282. <param name="type">The object <see cref="T:System.Type" /> that is passed to the WSDL generator.</param>
  1283. <param name=" url">The well-known endpoint that can process messages sent to a method on the object type specified in the <paramref name="type" /> parameter. </param>
  1284. </member>
  1285. <member name="P:System.Runtime.Remoting.MetadataServices.ServiceType.ObjectType">
  1286. <summary>
  1287. <para> Gets the object <see cref="T:System.Type" /> that is passed to the Web Services Description Language (WSDL)
  1288. generator.</para>
  1289. </summary>
  1290. </member>
  1291. <member name="P:System.Runtime.Remoting.MetadataServices.ServiceType.Url">
  1292. <summary>
  1293. <para>Gets the URL of an object <see cref="T:System.Type" /> that is passed to the Web Services Description Language (WSDL) generator.</para>
  1294. </summary>
  1295. </member>
  1296. <member name="T:System.Runtime.Remoting.MetadataServices.SdlChannelSinkProvider">
  1297. <summary>
  1298. <para>Provides the implementation for the server channel
  1299. sink provider that creates <see cref="T:System.Runtime.Remoting.MetadataServices.SdlChannelSink" />
  1300. instances.</para>
  1301. </summary>
  1302. </member>
  1303. <member name="M:System.Runtime.Remoting.MetadataServices.SdlChannelSinkProvider.#ctor">
  1304. <summary>
  1305. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.MetadataServices.SdlChannelSinkProvider" /> class with default values.</para>
  1306. </summary>
  1307. </member>
  1308. <member name="M:System.Runtime.Remoting.MetadataServices.SdlChannelSinkProvider.#ctor(System.Collections.IDictionary,System.Collections.ICollection)">
  1309. <summary>
  1310. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.MetadataServices.SdlChannelSinkProvider" /> class with specified
  1311. properties and provider data.</para>
  1312. </summary>
  1313. <param name="properties">An <see cref="T:System.Collections.IDictionary" /> of configuration properties to use with the new instance of <see cref="T:System.Runtime.Remoting.MetadataServices.SdlChannelSinkProvider" /> .</param>
  1314. <param name=" providerData">An <see cref="T:System.Collections.ICollection" /> of <see cref="T:System.Runtime.Remoting.Channels.SinkProviderData" /> instances to use with the new instance of <see cref="T:System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider" />.</param>
  1315. </member>
  1316. <member name="M:System.Runtime.Remoting.MetadataServices.SdlChannelSinkProvider.GetChannelData(System.Runtime.Remoting.Channels.IChannelDataStore)">
  1317. <summary>
  1318. <para> Returns the channel data for the channel that the
  1319. current sink is associated with.</para>
  1320. </summary>
  1321. <param name="localChannelData">An <see cref="T:System.Runtime.Remoting.Channels.IChannelDataStore" /> object in which the channel data is to be returned.</param>
  1322. </member>
  1323. <member name="M:System.Runtime.Remoting.MetadataServices.SdlChannelSinkProvider.CreateSink(System.Runtime.Remoting.Channels.IChannelReceiver)">
  1324. <summary>
  1325. <para>Creates a sink chain.
  1326. </para>
  1327. </summary>
  1328. <param name="channel">The channel for which to create the channel sink chain.</param>
  1329. <returns>
  1330. <para> The first sink of the
  1331. newly formed channel sink chain. </para>
  1332. </returns>
  1333. </member>
  1334. <member name="P:System.Runtime.Remoting.MetadataServices.SdlChannelSinkProvider.Next">
  1335. <summary>
  1336. <para>Gets or sets the next <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSinkProvider" /> in the sink provider chain.</para>
  1337. </summary>
  1338. </member>
  1339. <member name="T:System.Runtime.Remoting.MetadataServices.SdlChannelSink">
  1340. <summary>
  1341. <para>Provides the implementation for a server channel sink that generates Web Services Description
  1342. Language (WSDL) dynamically on the server.</para>
  1343. </summary>
  1344. </member>
  1345. <member name="M:System.Runtime.Remoting.MetadataServices.SdlChannelSink.#ctor(System.Runtime.Remoting.Channels.IChannelReceiver,System.Runtime.Remoting.Channels.IServerChannelSink)">
  1346. <summary>
  1347. <para>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.MetadataServices.SdlChannelSink" /> class.</para>
  1348. </summary>
  1349. <param name="receiver">Indicates the channel that will receive the messages serialized by the new instance of <see cref="T:System.Runtime.Remoting.MetadataServices.SdlChannelSink" />.</param>
  1350. <param name=" nextSink">The next sink in the sink chain.</param>
  1351. </member>
  1352. <member name="M:System.Runtime.Remoting.MetadataServices.SdlChannelSink.ProcessMessage(System.Runtime.Remoting.Channels.IServerChannelSinkStack,System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream,System.Runtime.Remoting.Messaging.IMessage@,System.Runtime.Remoting.Channels.ITransportHeaders@,System.IO.Stream@)">
  1353. <summary>
  1354. <para> Requests message processing from the current sink.</para>
  1355. </summary>
  1356. <param name="sinkStack">A stack of channel sinks that called the current sink.</param>
  1357. <param name="requestMsg">The message that contains the request.</param>
  1358. <param name="requestHeaders">The headers retrieved from the incoming message from the client.</param>
  1359. <param name="requestStream">The stream that needs to be processed and passed on to the deserialization sink.</param>
  1360. <param name="responseMsg">When this method returns, contains an <see cref="T:System.Runtime.Remoting.Messaging.IMessage" /> that holds the response message. This parameter is passed uninitialized.</param>
  1361. <param name="responseHeaders">When this method returns, contains an <see cref="T:System.Runtime.Remoting.Channels.ITransportHeaders" /> that holds the headers to add to return message heading to the client. This parameter is passed uninitialized. </param>
  1362. <param name="responseStream">When this method returns, contains a <see cref="T:System.IO.Stream" /> that is heading to the transport sink. This parameter is passed uninitialized. </param>
  1363. <returns>
  1364. <para>A <see cref="T:System.Runtime.Remoting.Channels.ServerProcessing" /> status value that
  1365. provides information about how the message was processed.</para>
  1366. </returns>
  1367. </member>
  1368. <member name="M:System.Runtime.Remoting.MetadataServices.SdlChannelSink.AsyncProcessResponse(System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack,System.Object,System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders,System.IO.Stream)">
  1369. <summary>
  1370. <para>Requests processing from the current sink of the response from a method call
  1371. sent asynchronously.</para>
  1372. </summary>
  1373. <param name="sinkStack">A stack of sinks leading back to the server transport sink.</param>
  1374. <param name="state">Information associated with the current sink, generated on the request side, and needed on the response side.</param>
  1375. <param name="msg">The response message.</param>
  1376. <param name="headers">The headers to add to the return message heading to the client.</param>
  1377. <param name="stream">The stream heading back to the transport sink.</param>
  1378. </member>
  1379. <member name="M:System.Runtime.Remoting.MetadataServices.SdlChannelSink.GetResponseStream(System.Runtime.Remoting.Channels.IServerResponseChannelSinkStack,System.Object,System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Channels.ITransportHeaders)">
  1380. <summary>
  1381. <para>Returns the <see cref="T:System.IO.Stream" /> onto which the provided
  1382. response message is to be serialized.</para>
  1383. </summary>
  1384. <param name="sinkStack">A stack of sinks leading back to the server transport sink.</param>
  1385. <param name=" state">Information associated with the current sink, generated on the request side, and needed on the response side.</param>
  1386. <param name=" msg">The response message to serialize. </param>
  1387. <param name=" headers">The headers to put in the response stream to the client.</param>
  1388. <returns>
  1389. <para>The <see cref="T:System.IO.Stream" /> onto which the provided
  1390. response message is to be serialized.</para>
  1391. </returns>
  1392. </member>
  1393. <member name="P:System.Runtime.Remoting.MetadataServices.SdlChannelSink.NextChannelSink">
  1394. <summary>
  1395. <para>Gets the next <see cref="T:System.Runtime.Remoting.Channels.IServerChannelSink" /> in the sink chain.</para>
  1396. </summary>
  1397. </member>
  1398. <member name="P:System.Runtime.Remoting.MetadataServices.SdlChannelSink.Properties">
  1399. <summary>
  1400. <para>Gets an <see cref="T:System.Collections.IDictionary" /> of properties for the
  1401. current channel sink.</para>
  1402. </summary>
  1403. </member>
  1404. <member name="T:System.Runtime.Remoting.MetadataServices.SUDSParserException">
  1405. <summary>
  1406. <para>The exception thrown if an error occurs during parsing of Web Services Description
  1407. Language (WSDL).</para>
  1408. </summary>
  1409. </member>
  1410. <member name="T:System.Runtime.Remoting.MetadataServices.SUDSGeneratorException">
  1411. <summary>
  1412. <para>The exception thrown if an error occurs during generation of Web Services Description
  1413. Language (WSDL).</para>
  1414. </summary>
  1415. </member>
  1416. <member name="T:System.Runtime.Remoting.MetadataServices.SdlType">
  1417. <summary>
  1418. <para>Specifies the schema type used to describe services
  1419. provided by an application.</para>
  1420. </summary>
  1421. </member>
  1422. <member name="F:System.Runtime.Remoting.MetadataServices.SdlType.Sdl">
  1423. <summary>
  1424. <para> Indicates that basic Services Description Language (SDL) is used to describe services
  1425. provided by an application. This value is obsolete.</para>
  1426. </summary>
  1427. </member>
  1428. <member name="F:System.Runtime.Remoting.MetadataServices.SdlType.Wsdl">
  1429. <summary>
  1430. <para>Indicates that the Web Services Description Language
  1431. (WSDL) is used to describe services provided by an application.</para>
  1432. </summary>
  1433. </member>
  1434. <member name="T:System.Runtime.Remoting.Services.RemotingClientProxy">
  1435. <summary>
  1436. <para>The abstract base class for proxies to well-known
  1437. objects generated by the <see topic="pgrfsoapsudsutilitysoapsudsexe " title="Soapsuds tool" />.</para>
  1438. </summary>
  1439. </member>
  1440. <member name="P:System.Runtime.Remoting.Services.RemotingClientProxy.AllowAutoRedirect">
  1441. <summary>
  1442. <para> Gets or sets a value indicating whether the automatic handling of server redirects is enabled.</para>
  1443. </summary>
  1444. </member>
  1445. <member name="P:System.Runtime.Remoting.Services.RemotingClientProxy.Cookies">
  1446. <summary>
  1447. <para> Gets the cookies received from the server that will be sent back on
  1448. requests that match the cookie's path.</para>
  1449. </summary>
  1450. </member>
  1451. <member name="P:System.Runtime.Remoting.Services.RemotingClientProxy.EnableCookies">
  1452. <summary>
  1453. Gets or sets a value indicating whether the handling of
  1454. cookies received from the server is enabled.
  1455. </summary>
  1456. </member>
  1457. <member name="P:System.Runtime.Remoting.Services.RemotingClientProxy.PreAuthenticate">
  1458. <summary>
  1459. <para> Gets or sets a value indicating whether preauthentication of requests is enabled.</para>
  1460. </summary>
  1461. </member>
  1462. <member name="P:System.Runtime.Remoting.Services.RemotingClientProxy.Path">
  1463. <summary>
  1464. <para>Gets or sets the base URL to the server to use for requests.</para>
  1465. </summary>
  1466. </member>
  1467. <member name="P:System.Runtime.Remoting.Services.RemotingClientProxy.Timeout">
  1468. <summary>
  1469. <para> Gets or sets the time-out in milliseconds to use for
  1470. synchronous calls.</para>
  1471. </summary>
  1472. </member>
  1473. <member name="P:System.Runtime.Remoting.Services.RemotingClientProxy.Url">
  1474. <summary>
  1475. <para>Gets or sets the base URL to the server to use for requests.</para>
  1476. </summary>
  1477. </member>
  1478. <member name="P:System.Runtime.Remoting.Services.RemotingClientProxy.UserAgent">
  1479. <summary>
  1480. <para>Gets or sets the user agent HTTP header for the request.</para>
  1481. </summary>
  1482. </member>
  1483. <member name="P:System.Runtime.Remoting.Services.RemotingClientProxy.Username">
  1484. <summary>
  1485. <para>Gets or sets the user name to send for basic authentication and digest authentication.</para>
  1486. </summary>
  1487. </member>
  1488. <member name="P:System.Runtime.Remoting.Services.RemotingClientProxy.Password">
  1489. <summary>
  1490. <para>Gets or sets the password to use for basic authentication and digest authentication.</para>
  1491. </summary>
  1492. </member>
  1493. <member name="P:System.Runtime.Remoting.Services.RemotingClientProxy.Domain">
  1494. <summary>
  1495. <para>Gets or sets the domain name to be used for basic authentication and digest authentication.</para>
  1496. </summary>
  1497. </member>
  1498. <member name="P:System.Runtime.Remoting.Services.RemotingClientProxy.ProxyName">
  1499. <summary>
  1500. <para>Gets or sets the name of the proxy server to use for requests.</para>
  1501. </summary>
  1502. </member>
  1503. <member name="P:System.Runtime.Remoting.Services.RemotingClientProxy.ProxyPort">
  1504. <summary>
  1505. <para>Gets or sets the port number of the proxy server to use for requests.</para>
  1506. </summary>
  1507. </member>
  1508. <member name="T:System.Runtime.Remoting.Services.RemotingService">
  1509. <summary>
  1510. <para>Provides the base implementation for the remoting XML Web
  1511. services.</para>
  1512. </summary>
  1513. </member>
  1514. <member name="P:System.Runtime.Remoting.Services.RemotingService.Application">
  1515. <summary>
  1516. Gets a reference to the application object for the
  1517. current HTTP request.
  1518. </summary>
  1519. </member>
  1520. <member name="P:System.Runtime.Remoting.Services.RemotingService.Context">
  1521. <summary>
  1522. <para>Gets the current HTTP-specific context used by the HTTP
  1523. server to process Web requests.</para>
  1524. </summary>
  1525. </member>
  1526. <member name="P:System.Runtime.Remoting.Services.RemotingService.Session">
  1527. <summary>
  1528. <para> Gets the <see cref="T:System.Web.HttpSessionState" /> for the current request.</para>
  1529. </summary>
  1530. </member>
  1531. <member name="P:System.Runtime.Remoting.Services.RemotingService.Server">
  1532. <summary>
  1533. <para> Gets the <see cref="T:System.Web.HttpServerUtility" /> for the current
  1534. request.</para>
  1535. </summary>
  1536. </member>
  1537. <member name="P:System.Runtime.Remoting.Services.RemotingService.User">
  1538. <summary>
  1539. <para> Gets the security context of the user on whose
  1540. behalf the code is running, including that user's identity and any roles they belong to.</para>
  1541. </summary>
  1542. </member>
  1543. </members>
  1544. </doc>