Hello World BizTalk project. Gemaakt in BizTalk 2013 en omgezet naar 2016.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

ShipmentStatusSchema_TEST.xsd.cs 2.9KB

1 miesiąc temu
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. namespace TM.HelloBizTalk2013World.Schemas {
  2. using Microsoft.XLANGs.BaseTypes;
  3. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.BizTalk.Schema.Compiler", "3.0.1.0")]
  4. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5. [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
  6. [SchemaType(SchemaTypeEnum.Document)]
  7. [Schema(@"TM.HelloBizTalk2013World.Schemas",@"ShipmentStatus")]
  8. [System.SerializableAttribute()]
  9. [SchemaRoots(new string[] {@"ShipmentStatus"})]
  10. public sealed class ShipmentStatusSchema_TEST : Microsoft.XLANGs.BaseTypes.SchemaBase {
  11. [System.NonSerializedAttribute()]
  12. private static object _rawSchema;
  13. [System.NonSerializedAttribute()]
  14. private const string _strSchema = @"<?xml version=""1.0"" encoding=""utf-16""?>
  15. <xs:schema xmlns=""TM.HelloBizTalk2013World.Schemas"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" attributeFormDefault=""unqualified"" elementFormDefault=""qualified"" targetNamespace=""TM.HelloBizTalk2013World.Schemas"" xmlns:xs=""http://www.w3.org/2001/XMLSchema"">
  16. <xs:element name=""ShipmentStatus"">
  17. <xs:complexType>
  18. <xs:sequence>
  19. <xs:element name=""Header"">
  20. <xs:complexType>
  21. <xs:sequence>
  22. <xs:element name=""MessageIdentifier"" type=""xs:string"" />
  23. <xs:element name=""MessageDateTime"" type=""xs:dateTime"" />
  24. <xs:element name=""From"" type=""xs:string"" />
  25. <xs:element name=""To"" type=""xs:string"" />
  26. </xs:sequence>
  27. </xs:complexType>
  28. </xs:element>
  29. <xs:element name=""ShipmentStatusReport"">
  30. <xs:complexType>
  31. <xs:sequence>
  32. <xs:element name=""ShipmentNumber"" type=""xs:unsignedLong"" />
  33. <xs:element name=""StatusCode"" type=""xs:string"" />
  34. <xs:element name=""StatusDateTime"" type=""xs:dateTime"" />
  35. <xs:element name=""SignedBy"" type=""xs:anyType"" />
  36. <xs:element name=""Remarks"" type=""xs:anyType"" />
  37. </xs:sequence>
  38. </xs:complexType>
  39. </xs:element>
  40. </xs:sequence>
  41. <xs:attribute name=""Version"" type=""xs:unsignedByte"" use=""required"" />
  42. </xs:complexType>
  43. </xs:element>
  44. </xs:schema>";
  45. public ShipmentStatusSchema_TEST() {
  46. }
  47. public override string XmlContent {
  48. get {
  49. return _strSchema;
  50. }
  51. }
  52. public override string[] RootNodes {
  53. get {
  54. string[] _RootElements = new string [1];
  55. _RootElements[0] = "ShipmentStatus";
  56. return _RootElements;
  57. }
  58. }
  59. protected override object RawSchema {
  60. get {
  61. return _rawSchema;
  62. }
  63. set {
  64. _rawSchema = value;
  65. }
  66. }
  67. }
  68. }