DisplayCommandResponse.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. // Runtime Version:4.0.30319.42000
  5. //
  6. // Changes to this file may cause incorrect behavior and will be lost if
  7. // the code is regenerated.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. using System.Xml.Serialization;
  11. //
  12. // This source code was auto-generated by xsd, Version=4.7.3081.0.
  13. //
  14. /// <remarks/>
  15. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.7.3081.0")]
  16. [System.SerializableAttribute()]
  17. [System.Diagnostics.DebuggerStepThroughAttribute()]
  18. [System.ComponentModel.DesignerCategoryAttribute("code")]
  19. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
  20. [System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false)]
  21. public partial class DisplayResponse {
  22. private ResultType overallResultField;
  23. private int requestIdField;
  24. private string valueField;
  25. /// <remarks/>
  26. [System.Xml.Serialization.XmlAttributeAttribute()]
  27. public ResultType OverallResult {
  28. get {
  29. return this.overallResultField;
  30. }
  31. set {
  32. this.overallResultField = value;
  33. }
  34. }
  35. /// <remarks/>
  36. [System.Xml.Serialization.XmlAttributeAttribute()]
  37. public int RequestId {
  38. get {
  39. return this.requestIdField;
  40. }
  41. set {
  42. this.requestIdField = value;
  43. }
  44. }
  45. /// <remarks/>
  46. [System.Xml.Serialization.XmlTextAttribute()]
  47. public string Value {
  48. get {
  49. return this.valueField;
  50. }
  51. set {
  52. this.valueField = value;
  53. }
  54. }
  55. }
  56. /// <remarks/>
  57. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.7.3081.0")]
  58. [System.SerializableAttribute()]
  59. public enum ResultType {
  60. /// <remarks/>
  61. Success,
  62. /// <remarks/>
  63. Failure,
  64. /// <remarks/>
  65. ParsingError,
  66. }