ChangeLog 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559
  1. 2004-06-02 Lluis Sanchez Gual <[email protected]>
  2. * HttpSimpleProtocolImporter.cs: Fixed case of generated methods to match
  3. MS behavior. Always use import input parameters as System.String.
  4. * ProtocolImporter.cs: Remove _x0020_ from type names.
  5. * SoapProtocolImporter.cs: Fixed case of generated methods to match
  6. MS behavior.
  7. 2004-06-01 Gert Driesen <[email protected]>
  8. * Binding.cs: removed extra XmlIgnore attribute on ServiceDescription
  9. * Import.cs: removed extra XmlIgnore attribute on ServiceDescription
  10. * Message.cs: removed extra XmlIgnore attribute on ServiceDescription
  11. * MessageBinding.cs: removed extra DefaultValue attribute from Name,
  12. removed extra XmlIgnoreAttribute from OperationBinding
  13. * MessagePart.cs: removed extra XmlIgnore attribute on Message
  14. * MimeContentBinding.cs: removed extra DefaultValue attribute on Part
  15. * Operation.cs: removed extra XmlIgnore attribute on PortType
  16. * OperationBinding.cs: removed extra XmlIgnore attribute on Binding
  17. * OperationMessage.cs: removed extra XmlIgnore attribute on Operation
  18. * Port.cs: removed extra XmlIgnore attribute on Service
  19. * PortType.cs: removed extra XmlIgnore on ServiceDescription
  20. * Service.cs: removed extra XmlIgnore on ServiceDescription
  21. * ServiceDescriptionFormatExtension.cs: removed extra XmlIgnore
  22. attribute on Parent
  23. * SoapHeaderBinding.cs: added XmlElement attribute on Fault
  24. * HttpSimpleProtocolImporter.cs: removed unused variable
  25. * ServiceDescriptionImporter.cs: removed unused variable
  26. * SoapProtocolImporter.cs: removed unused variable
  27. 2004-05-25 Lluis Sanchez Gual <[email protected]>
  28. * BindingCollection.cs: Fixed this[string] property.
  29. 2004-05-24 Lluis Sanchez Gual <[email protected]>
  30. * ProtocolImporter.cs: issue a warning if no services have been found.
  31. 2004-03-02 Lluis Sanchez Gual <[email protected]>
  32. * SoapBinding.cs: Added missing attributes. The class is not sealed.
  33. * SoapBodyBinding.cs: Removed unneeded attributes.
  34. 2004-03-02 Lluis Sanchez Gual <[email protected]>
  35. * ProtocolImporter.cs: Little fix in schema classification.
  36. 2004-02-27 Lluis Sanchez Gual <[email protected]>
  37. * ExtensionManager.cs: Create all serializers for soap extensions at once.
  38. * HttpSimpleProtocolImporter.cs: Assign the correct set of schemas to the
  39. schema importers (do not mix literal schemas with encoded schemas).
  40. * ProtocolImporter.cs: Added LiteralSchemas and EncodedSchemas properties.
  41. Separation between literal and encoded schemas is needed to avoid importing
  42. for example a literal schema as encoded. Also implemented ClasifySchemas,
  43. which separates literal from encoded schemas. I really don't like doing it
  44. in this way, but I haven't found another way.
  45. * SoapProtocolImporter.cs: Add type include attributes to the generated
  46. proxy classes.
  47. 2004-02-11 Lluis Sanchez Gual <[email protected]>
  48. * SoapProtocolReflector.cs: Fixed bug #53247. Element name asigned to the
  49. message part (in literal+bare format) was incorrect.
  50. 2004-01-27 Lluis Sanchez Gual <[email protected]>
  51. * SoapProtocolImporter.cs, SoapProtocolReflector.cs: Support methods with
  52. "any" as return type. In this case, the part of the return message contains
  53. a reference to the type that describes the "any" element.
  54. 2004-01-24 Lluis Sanchez Gual <[email protected]>
  55. * ExtensionManager.cs: Support more than one XmlFormatExtensionPrefixAttribute
  56. un one soap extension.
  57. * HttpSimpleProtocolImporter.cs: Made class internal.
  58. * HttpSimpleProtocolReflector.cs.cs: ReflectMethodBinding(): GET and POST
  59. do not use method bindings. Return null.
  60. * ProtocolReflector.cs: Several fixes: do not generate binding if it doesn't
  61. have any operation, avoid port and binding name colisions, and other minor
  62. fixes.
  63. * ServiceDescription.cs: Collect the namespaces to be added to the root
  64. element of a serializaed wsdl document from the soap extensions.
  65. * ServiceDescriptionSerializerBase.cs: Made classes internal.
  66. * SoapAddressBinding.cs, SoapFaultBinding.cs, SoapOperationBinding.cs,
  67. SoapProtocolImporter.cs: Class should not be sealed.
  68. * SoapBodyBinding.cs: Set the correct class attributes.
  69. * SoapHeaderBinding.cs: Class should not be sealed. Added missing method.
  70. * SoapHeaderFaultBinding.cs: Fixed class attributes.
  71. 2004-01-21 Lluis Sanchez Gual <[email protected]>
  72. * HttpSimpleProtocolImporter.cs: pass the web service class list to the xml
  73. importers to make sure that no data classes are created with the same
  74. name as the web service.
  75. * ProtocolImporter.cs: Use port name as class name only if there is more
  76. than one port using the same protocol. This fixes big #52742.
  77. 2004-01-19 Lluis Sanchez Gual <[email protected]>
  78. * HttpSimpleProtocolReflector.cs, SoapProtocolReflector.cs:
  79. Use GetWebServiceLiteralNamespace instead of WebServiceLiteralNamespace.
  80. * ProtocolReflector.cs: Port names must be unique in a service description.
  81. This fixes bug #53019.
  82. * ProtocolImporter.cs: Little fix.
  83. 2004-01-14 Lluis Sanchez Gual <[email protected]>
  84. * ProtocolImporter.cs, SoapProtocolImporter.cs: Added support for OneWay
  85. operations (those don't have output message).
  86. * SoapProtocolReflector.cs: Set the correct element name and
  87. namespace for headers (those are not managed like other data classes).
  88. 2004-01-13 Lluis Sanchez Gual <[email protected]>
  89. * ProtocolReflector.cs: in the case a new ServiceDescription is created,
  90. the name of the BindingInfo was not copied into the new ServiceDescriptor.
  91. Patch by Yaacov Akiba Slama.
  92. 2003-12-12 Lluis Sanchez Gual <[email protected]>
  93. * HttpSimpleProtocolImporter.cs: In ImportOutMembersMapping(), support part
  94. without element name (use anyType in this case).
  95. In GetOutMimeFormatter(), support MimeContentBinding.
  96. * ProtocolImporter.cs, SoapProtocolImporter.cs: Improved error and warning
  97. handling. Minor fixes.
  98. 2003-11-11 Lluis Sanchez Gual <[email protected]>
  99. * ServiceDescription.cs, SoapBinding.cs, SoapHeaderBinding.cs,
  100. SoapHeaderFaultBinding.cs: Removed some TODOs and FIXMEs.
  101. 2003-10-20 Lluis Sanchez Gual <[email protected]>
  102. * ServiceDescription.cs: Fixed implementation of CanRead.
  103. 2003-10-15 Lluis Sanchez Gual <[email protected]>
  104. * MessageBinding.cs: Name property should be null by default.
  105. * ProtocolImporter.cs: Take into account the previous change.
  106. 2003-10-15 Lluis Sanchez Gual <[email protected]>
  107. * HttpSimpleProtocolReflector.cs, ProtocolReflector.cs:
  108. Fixed naming of messages.
  109. * ProtocolImporter.cs: It now iterates through all bindings. It creates
  110. a namespace for all bindings.
  111. * ServiceDescriptionImporter.cs: Some code moved to ProtocolImporter.
  112. * SoapProtocolImporter.cs: Improved support for RPC format. It now is working.
  113. 2003-10-13 Lluis Sanchez Gual <[email protected]>
  114. * HttpSimpleProtocolReflector.cs, SoapProtocolReflector.cs:
  115. Get the namespace for literal types from LogicalTypeInfo, since it may not
  116. be the same as the service namespace.
  117. * ProtocolReflector.cs: Access LogicalTypeInfo to get WS info common to
  118. all protocols.
  119. * ServiceDescription.cs: Added soap/encoded namespace.
  120. * SoapProtocolImporter.cs: Added some bits of RPC format support.
  121. 2003-10-06 Lluis Sanchez Gual <[email protected]>
  122. * ProtocolImporter.cs: Moved some code to ServiceDescriptionImporter.
  123. WebServiceBindingAttribute addition moved to SoapProtocolImporter.
  124. Moved GetServiceUrl here (from SoapProtocolImporter).
  125. * ServiceDescriptionImporter.cs: Added support for HttpGet and HttpPost
  126. importers.
  127. * SoapProtocolImporter.cs: Minor fixes.
  128. * HttpSimpleProtocolImporter.cs, HttpGetProtocolImporter.cs,
  129. HttpPostProtocolImporter.cs: new files that implement HttpGet and HttpPost
  130. importers.
  131. 2003-10-04 Lluis Sanchez Gual <[email protected]>
  132. * ProtocolReflector.cs: The ReflectionImporter property now creates a
  133. reflector if the TypeStubInfo does not provide one.
  134. Do not create XmlSchemaExporter. Take it from the service reflector, sine
  135. it must be reused for all protocol reflectors. Moved some code to
  136. SoapProtocolReflector, since it cannot be reused for all reflectors.
  137. * ServiceDescriptionReflector.cs: Reflect the type for all available
  138. protocols.
  139. * SoapProtocolReflector.cs: Moved here some code from ProtoclReflector.
  140. * HttpGetProtocolReflector.cs, HttpPostProtocolReflector.cs,
  141. HttpSimpleProtocolReflector.cs: new files.
  142. 2003-10-01 Lluis Sanchez Gual <[email protected]>
  143. * ProtocolReflector.cs: Adapted to the changes in TypeStubInfo. Moved some
  144. common code to ServiceDescriptionReflector.
  145. * ServiceDescriptionReflector.cs: Moved some code from ProtocolReflector.cs
  146. 2003-09-28 Lluis Sanchez Gual <[email protected]>
  147. * ExtensionManager.cs: Read extension types from the configuration file.
  148. Added methods for getting extension importers and reflectors.
  149. * ProtocolImporter.cs: Implemented.
  150. * ProtocolReflector.cs: Implemented.
  151. * ServiceDescriptionCollection.cs: Fixed some methods for finding wsdl
  152. elements.
  153. * ServiceDescriptionImporter.cs: moved most of the code to ProtocolImporter.
  154. * ServiceDescriptionReflector.cs: moved most of the code to
  155. ProtocolReflector and SoapProtocolReflector.
  156. * SoapProtocolImporter.cs: Implemented.
  157. * SoapProtocolReflector.cs: Implemented.
  158. * SoapTransportImporter.cs: Implemented.
  159. * SoapHttpTransportImporter.cs: Implemented.
  160. * wsdl.genxs: Added.
  161. 2003-09-14 Lluis Sanchez Gual <[email protected]>
  162. * DocumentableItem.cs MimeContentBinding.cs OperationMessage.cs
  163. OperationMessageCollection.cs PortCollection.cs PortType.cs
  164. PortTypeCollection.cs ServiceCollection.cs ServiceDescriptionCollection.cs
  165. SoapBodyBinding.cs SoapOperationBinding.cs: Several fixes by Erik LeBel
  166. * ServiceDescriptionImporter.cs:
  167. * ServiceDescriptionSerializerBase.cs: regenerated after the changes in
  168. the service description changes.
  169. * ServiceDescriptionReflector.cs: Fixed generation of message parts in
  170. bare format.
  171. 2003-09-11 Lluis Sanchez Gual <[email protected]>
  172. * ServiceDescriptionImporter.cs, ServiceDescriptionReflector.cs: Added
  173. first bits of encoded format support.
  174. 2003-09-04 Lluis Sanchez Gual <[email protected]>
  175. * ServiceDescription.cs: minor fixes.
  176. * ServiceDescriptionImporter.cs: initial implementation.
  177. * ServiceDescriptionReflector.cs: Added support for bare parameter style.
  178. Added support for encoded format.
  179. 2003-09-01 Lluis Sanchez Gual <[email protected]>
  180. * ExtensionManager.cs: Added
  181. * ServiceDescriptionSerializerBase.cs. Added
  182. * ServiceDescription.cs: Reenabled suspport for serialization.
  183. * ServiceDescriptionReflector.cs: Import type and method documentation.
  184. 2003-08-29 Lluis Sanchez Gual <[email protected]>
  185. * ServiceDescription.cs: Disabled suspport for serialization, until I found
  186. an easy way of generate serialization readers and writers.
  187. 2003-08-28 Lluis Sanchez Gual <[email protected]>
  188. * MessageBinding.cs: Added default value attribute for Name property.
  189. * OperationMessage.cs: Added default value attribute for Name property.
  190. * ServiceDescription.cs: Changed order of some properties, so they are
  191. serialized in the right order.
  192. Added GetNamespaceList(), which returns the namespaces to add when serializing
  193. the document.
  194. Implemented classes ServiceDescriptionSerializer and ServiceDescriptionWriter,
  195. that extends the XmlSerializer by adding suport for XmlFormatExtensions.
  196. * ServiceDescriptionReflector.cs: Basic implementation (no support for
  197. extensions yet).
  198. * SoapBinding.cs: Fixed namespace name.
  199. * SoapBodyBinding.cs: Added null check in PartsString property.
  200. * SoapOperationBinding.cs: Fixed namespace name.
  201. 2003-07-22 Lluis Sanchez Gual <[email protected]>
  202. * Binding.cs, Import.cs, Message.cs, MessageBinding.cs, MessagePart.cs,
  203. Operation.cs, OperationBinding.cs, OperationMessage.cs, Port.cs,
  204. PortType.cs, Service.cs: Added XmlIgnore attributes to properties
  205. referencing parent objects.
  206. * OperationMessageCollection.cs: Fixed wrong OnInsert method
  207. * ServiceDescription.cs: Removed unneeded methods in
  208. ServiceDescriptionSerializer.
  209. 2002-08-20 Tim Coleman <[email protected]>
  210. * ServiceDescription.cs:
  211. Add ServiceDescription.ServiceDescriptionSerializer
  212. class.
  213. * ServiceDescriptionFormatExtensionCollection.cs:
  214. Remove reference to "parent".
  215. 2002-08-19 Tim Coleman <[email protected]>
  216. * BindingCollection.cs:
  217. Use base constructor, remove SetParent call
  218. * FaultBindingCollection.cs:
  219. * ImportCollection.cs:
  220. * MessageCollection.cs:
  221. * MessagePartCollection.cs:
  222. * OperationBindingCollection.cs:
  223. * OperationCollection.cs:
  224. * OperationFaultCollection.cs:
  225. * PortCollection.cs:
  226. * PortTypeCollection.cs:
  227. * ServiceCollection.cs:
  228. * ServiceDescriptionFormatExtensionCollection.cs:
  229. Use base constructor
  230. * ServiceDescriptionCollection.cs:
  231. Use base constructor, Remove SetParent method
  232. * ServiceDescriptionBaseCollection.cs:
  233. Make parent object private as according to
  234. class status page.
  235. * OperationMessageCollection.cs:
  236. Use base constructor
  237. Remove excess break's to avoid compiler warning
  238. Remove TODO attribute (confirmed default retval)
  239. 2002-08-15 Tim Coleman <[email protected]>
  240. * FaultBindingCollection.cs:
  241. * ImportCollection.cs:
  242. * MessageCollection.cs:
  243. * MessagePartCollection.cs:
  244. * OperationBindingCollection.cs:
  245. * OperationCollection.cs:
  246. * OperationFaultCollection.cs:
  247. * OperationMessageCollection.cs:
  248. * PortCollection.cs:
  249. * PortTypeCollection.cs:
  250. * ServiceCollection.cs:
  251. * ServiceDescriptionFormatExtensionCollection.cs:
  252. Use parent from ServiceDescriptionBaseCollection
  253. * ServiceDescriptionCollection.cs:
  254. Use parent from ServiceDescriptionBaseCollection
  255. Implement SetParent () method
  256. * ServiceDescriptionBaseCollection.cs:
  257. Add "parent" object.
  258. Add SetParent call to OnSet() and OnInsert ()
  259. 2002-08-12 Tim Coleman <[email protected]>
  260. * Operation.cs:
  261. Fix ParameterOrderString in case ParameterOrder is
  262. null.
  263. * BindingCollection.cs:
  264. Remove Table handling on insert/delete/indexer
  265. because it is handled in base class.
  266. * ServiceDescriptionBaseCollection.cs:
  267. Only add an element to the hashtable if its GetKey ()
  268. method does not return null.
  269. 2002-08-09 Tim Coleman <[email protected]>
  270. * BindingCollection.cs:
  271. * ServiceDescriptionCollection.cs:
  272. Implement Set indexer
  273. * FaultBindingCollection.cs:
  274. * MessageCollection.cs:
  275. * MessagePartCollection.cs:
  276. * OperationFaultCollection.cs:
  277. * PortCollection.cs:
  278. * PortTypeCollection.cs:
  279. * ServiceCollection.cs:
  280. Implement Set indexer, code cleanup
  281. * Message.cs:
  282. Implement FindPartByName ()
  283. * OperationMessageCollection.cs:
  284. Alter OnSet () method
  285. * ServiceDescriptionBaseCollection.cs:
  286. Implement some methods.
  287. * ServiceDescriptionFormatExtensionCollection.cs:
  288. Implement Find (), FindAll (), OnValidate () methods
  289. 2002-08-06 Tim Coleman <[email protected]>
  290. * ServiceDescription.cs:
  291. Add namespace definitions when serializing.
  292. * HttpBinding.cs:
  293. Change namespace definition (wsdl was spelt wsld)
  294. 2002-08-06 Tim Coleman <[email protected]>
  295. * ServiceDescription.cs:
  296. Change the XmlElement name from "type" to "types" for
  297. the Types object
  298. 2002-08-06 Tim Coleman <[email protected]>
  299. * ServerProtocol.cs:
  300. Add new class as implied by class statuc page.
  301. SoapServerProtocol is derived from this.
  302. * SoapServerProtocol.cs:
  303. Change base class to ServerProtocol.
  304. * SoapClientMethod.cs:
  305. This class should not be sealed.
  306. 2002-08-03 Tim Coleman <[email protected]>
  307. * SoapProtocolReflector.cs:
  308. Removed SoapBinding property and made the class
  309. not sealed to agree with class reference page.
  310. 2002-08-03 Tim Coleman <[email protected]>
  311. * ServiceDescriptionBaseCollection.cs:
  312. Removed some NotImplementedException()'s so that
  313. it runs.
  314. 2002-07-26 Tim Coleman <[email protected]>
  315. * ServiceDescription.cs:
  316. Changed the creation of the XmlSerializer after
  317. consulting the System.Xml.Serialization namespace
  318. and trying to serialize a document. Now works somewhat!
  319. 2002-07-25 Tim Coleman <[email protected]>
  320. * OperationMessageCollection.cs:
  321. Some implementation of this class after consulting a
  322. WSDL reference. Now validates the inputs.
  323. 2002-07-24 Tim Coleman <[email protected]>
  324. * ProtocolImporter.cs:
  325. * ProtocolReflector.cs:
  326. Some implementation of these classes. MonoTODO's begone!
  327. * SoapProtocolImporter.cs:
  328. Changed description to literal string "Soap"
  329. * SoapProtocolReflector.cs:
  330. Added a new class based on guesswork and conjecture.
  331. 2002-07-24 Tim Coleman <[email protected]>
  332. * ServiceDescription.cs:
  333. Implement Read/Write methods for serialization/
  334. deserialization.
  335. 2002-07-23 Tim Coleman <[email protected]>
  336. * ServiceDescription.cs:
  337. Add XmlIgnore attribute to ServiceDescriptions property
  338. * OperationFlow.cs:
  339. * ServiceDescriptionImportWarnings.cs:
  340. Explicitly set values in enumeration to match
  341. .NET.
  342. 2002-07-22 Tim Coleman <[email protected]>
  343. * Binding.cs:
  344. * BindingCollection.cs:
  345. * DocumentableItem.cs:
  346. * FaultBinding.cs:
  347. * FaultBindingCollection.cs:
  348. * HttpAddressBinding.cs:
  349. * HttpBinding.cs:
  350. * HttpOperationBinding.cs:
  351. * HttpUrlEncodedBinding.cs:
  352. * HttpUrlReplacementBinding.cs:
  353. * Import.cs:
  354. * ImportCollection.cs:
  355. * InputBinding.cs:
  356. * Message.cs:
  357. * MessageBinding.cs:
  358. * MessageCollection.cs:
  359. * MessagePart.cs:
  360. * MessagePartCollection.cs:
  361. * MimeContentBinding.cs:
  362. * MimeMultipartRelatedBinding.cs:
  363. * MimePart.cs:
  364. * MimePartCollection.cs:
  365. * MimeTextBinding.cs:
  366. * MimeTextMatch.cs:
  367. * MimeTextMatchCollection.cs:
  368. * MimeXmlBinding.cs:
  369. * Operation.cs:
  370. * OperationBinding.cs:
  371. * OperationBindingCollection.cs:
  372. * OperationCollection.cs:
  373. * OperationFaultCollection.cs:
  374. * OperationFlow.cs:
  375. * OperationMessage.cs:
  376. * OperationMessageCollection.cs:
  377. * OutputBinding.cs:
  378. * Port.cs:
  379. * PortCollection.cs:
  380. * PortType.cs:
  381. * PortTypeCollection.cs:
  382. * ProtocolImporter.cs:
  383. * Service.cs:
  384. * ServiceCollection.cs:
  385. * ServiceDescription.cs:
  386. * ServiceDescriptionBaseCollection.cs:
  387. * ServiceDescriptionCollection.cs:
  388. * ServiceDescriptionFormatExtension.cs:
  389. * ServiceDescriptionFormatExtensionCollection.cs:
  390. * ServiceDescriptionImportWarnings.cs:
  391. * SoapAddressBinding.cs:
  392. * SoapBinding.cs:
  393. * SoapBindingStyle.cs:
  394. * SoapBindingUse.cs:
  395. * SoapBodyBinding.cs:
  396. * SoapExtensionImporter.cs:
  397. * SoapExtensionReflector.cs:
  398. * SoapFaultBinding.cs:
  399. * SoapHeaderBinding.cs:
  400. * SoapHeaderFaultBinding.cs:
  401. * SoapOperationBinding.cs:
  402. * SoapTransportImporter.cs:
  403. * Types.cs:
  404. 1. Add missing attributes as determined by reflection
  405. 2. Fix protection levels where appropriate
  406. 3. Add missing items where appropriate
  407. Basically, this was a change to remove all the X's from
  408. the project status page for this namespace :)
  409. 2002-07-19 Tim Coleman <[email protected]>
  410. * Binding.cs:
  411. * BindingCollection.cs:
  412. * ChangeLog:
  413. * DocumentableItem.cs:
  414. * FaultBinding.cs:
  415. * FaultBindingCollection.cs:
  416. * HttpAddressBinding.cs:
  417. * HttpBinding.cs:
  418. * HttpOperationBinding.cs:
  419. * HttpUrlEncodedBinding.cs:
  420. * HttpUrlReplacementBinding.cs:
  421. * Import.cs:
  422. * ImportCollection.cs:
  423. * InputBinding.cs:
  424. * Message.cs:
  425. * MessageBinding.cs:
  426. * MessageCollection.cs:
  427. * MessagePart.cs:
  428. * MessagePartCollection.cs:
  429. * MimeContentBinding.cs:
  430. * MimeMultipartRelatedBinding.cs:
  431. * MimePart.cs:
  432. * MimePartCollection.cs:
  433. * MimeTextBinding.cs:
  434. * MimeTextMatch.cs:
  435. * MimeTextMatchCollection.cs:
  436. * MimeXmlBinding.cs:
  437. * Operation.cs:
  438. * OperationBinding.cs:
  439. * OperationBindingCollection.cs:
  440. * OperationCollection.cs:
  441. * OperationFault.cs:
  442. * OperationFaultCollection.cs:
  443. * OperationFlow.cs:
  444. * OperationInput.cs:
  445. * OperationMessage.cs:
  446. * OperationMessageCollection.cs:
  447. * OperationOutput.cs:
  448. * OutputBinding.cs:
  449. * Port.cs:
  450. * PortCollection.cs:
  451. * PortType.cs:
  452. * PortTypeCollection.cs:
  453. * ProtocolImporter.cs:
  454. * ProtocolReflector.cs:
  455. * Service.cs:
  456. * ServiceCollection.cs:
  457. * ServiceDescription.cs:
  458. * ServiceDescriptionBaseCollection.cs:
  459. * ServiceDescriptionCollection.cs:
  460. * ServiceDescriptionFormatExtension.cs:
  461. * ServiceDescriptionFormatExtensionCollection.cs:
  462. * ServiceDescriptionImportStyle.cs:
  463. * ServiceDescriptionImportWarnings.cs:
  464. * ServiceDescriptionImporter.cs:
  465. * ServiceDescriptionReflector.cs:
  466. * SoapAddressBinding.cs:
  467. * SoapBinding.cs:
  468. * SoapBindingStyle.cs:
  469. * SoapBindingUse.cs:
  470. * SoapBodyBinding.cs:
  471. * SoapExtensionImporter.cs:
  472. * SoapExtensionReflector.cs:
  473. * SoapFaultBinding.cs:
  474. * SoapHeaderBinding.cs:
  475. * SoapHeaderFaultBinding.cs:
  476. * SoapOperationBinding.cs:
  477. * SoapProtocolImporter.cs:
  478. * SoapTransportImporter.cs:
  479. * Types.cs:
  480. Initial implementation