/[projects]/dao/DaoMqPump2/DaoMqGUI/Service References/ServiceReference1/Reference.cs
ViewVC logotype

Diff of /dao/DaoMqPump2/DaoMqGUI/Service References/ServiceReference1/Reference.cs

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1999 by torben, Wed Jul 3 07:56:52 2013 UTC revision 2000 by torben, Mon Jul 8 14:23:01 2013 UTC
# Line 9  Line 9 
9  //------------------------------------------------------------------------------  //------------------------------------------------------------------------------
10    
11  namespace DaoMqGUI.ServiceReference1 {  namespace DaoMqGUI.ServiceReference1 {
12        using System.Runtime.Serialization;
13        using System;
14            
15            
16        [System.Diagnostics.DebuggerStepThroughAttribute()]
17        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
18        [System.Runtime.Serialization.DataContractAttribute(Name="StatusData", Namespace="http://schemas.datacontract.org/2004/07/DaoMqPump2")]
19        [System.SerializableAttribute()]
20        public partial class StatusData : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
21            
22            [System.NonSerializedAttribute()]
23            private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
24            
25            [System.Runtime.Serialization.OptionalFieldAttribute()]
26            private int counterField;
27            
28            [System.Runtime.Serialization.OptionalFieldAttribute()]
29            private string lastErrorMessageField;
30            
31            [System.Runtime.Serialization.OptionalFieldAttribute()]
32            private string lastErrorTimeField;
33            
34            [System.Runtime.Serialization.OptionalFieldAttribute()]
35            private string lastOkTimeField;
36            
37            [System.Runtime.Serialization.OptionalFieldAttribute()]
38            private string lastTransferTimeField;
39            
40            [System.Runtime.Serialization.OptionalFieldAttribute()]
41            private bool lastrunOkField;
42            
43            [System.Runtime.Serialization.OptionalFieldAttribute()]
44            private bool transportEnabledField;
45            
46            [global::System.ComponentModel.BrowsableAttribute(false)]
47            public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
48                get {
49                    return this.extensionDataField;
50                }
51                set {
52                    this.extensionDataField = value;
53                }
54            }
55            
56            [System.Runtime.Serialization.DataMemberAttribute()]
57            public int counter {
58                get {
59                    return this.counterField;
60                }
61                set {
62                    if ((this.counterField.Equals(value) != true)) {
63                        this.counterField = value;
64                        this.RaisePropertyChanged("counter");
65                    }
66                }
67            }
68            
69            [System.Runtime.Serialization.DataMemberAttribute()]
70            public string lastErrorMessage {
71                get {
72                    return this.lastErrorMessageField;
73                }
74                set {
75                    if ((object.ReferenceEquals(this.lastErrorMessageField, value) != true)) {
76                        this.lastErrorMessageField = value;
77                        this.RaisePropertyChanged("lastErrorMessage");
78                    }
79                }
80            }
81            
82            [System.Runtime.Serialization.DataMemberAttribute()]
83            public string lastErrorTime {
84                get {
85                    return this.lastErrorTimeField;
86                }
87                set {
88                    if ((object.ReferenceEquals(this.lastErrorTimeField, value) != true)) {
89                        this.lastErrorTimeField = value;
90                        this.RaisePropertyChanged("lastErrorTime");
91                    }
92                }
93            }
94            
95            [System.Runtime.Serialization.DataMemberAttribute()]
96            public string lastOkTime {
97                get {
98                    return this.lastOkTimeField;
99                }
100                set {
101                    if ((object.ReferenceEquals(this.lastOkTimeField, value) != true)) {
102                        this.lastOkTimeField = value;
103                        this.RaisePropertyChanged("lastOkTime");
104                    }
105                }
106            }
107            
108            [System.Runtime.Serialization.DataMemberAttribute()]
109            public string lastTransferTime {
110                get {
111                    return this.lastTransferTimeField;
112                }
113                set {
114                    if ((object.ReferenceEquals(this.lastTransferTimeField, value) != true)) {
115                        this.lastTransferTimeField = value;
116                        this.RaisePropertyChanged("lastTransferTime");
117                    }
118                }
119            }
120            
121            [System.Runtime.Serialization.DataMemberAttribute()]
122            public bool lastrunOk {
123                get {
124                    return this.lastrunOkField;
125                }
126                set {
127                    if ((this.lastrunOkField.Equals(value) != true)) {
128                        this.lastrunOkField = value;
129                        this.RaisePropertyChanged("lastrunOk");
130                    }
131                }
132            }
133            
134            [System.Runtime.Serialization.DataMemberAttribute()]
135            public bool transportEnabled {
136                get {
137                    return this.transportEnabledField;
138                }
139                set {
140                    if ((this.transportEnabledField.Equals(value) != true)) {
141                        this.transportEnabledField = value;
142                        this.RaisePropertyChanged("transportEnabled");
143                    }
144                }
145            }
146            
147            public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
148            
149            protected void RaisePropertyChanged(string propertyName) {
150                System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
151                if ((propertyChanged != null)) {
152                    propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
153                }
154            }
155        }
156        
157      [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]      [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
158      [System.ServiceModel.ServiceContractAttribute(Namespace="http://Microsoft.ServiceModel.Samples", ConfigurationName="ServiceReference1.IRemoteControl")]      [System.ServiceModel.ServiceContractAttribute(Namespace="http://Microsoft.ServiceModel.Samples", ConfigurationName="ServiceReference1.IRemoteControl")]
159      public interface IRemoteControl {      public interface IRemoteControl {
# Line 18  namespace DaoMqGUI.ServiceReference1 { Line 161  namespace DaoMqGUI.ServiceReference1 {
161          [System.ServiceModel.OperationContractAttribute(Action="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransports", ReplyAction="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportsResponse")]          [System.ServiceModel.OperationContractAttribute(Action="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransports", ReplyAction="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportsResponse")]
162          string[] GetTransports();          string[] GetTransports();
163                    
164          [System.ServiceModel.OperationContractAttribute(Action="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportEnabled", ReplyAction="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportEnabledResponse")]          [System.ServiceModel.OperationContractAttribute(Action="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportStatus", ReplyAction="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportStatusResponse")]
165          bool GetTransportEnabled(string transport);          DaoMqGUI.ServiceReference1.StatusData GetTransportStatus(string transport);
166                    
167          [System.ServiceModel.OperationContractAttribute(Action="http://Microsoft.ServiceModel.Samples/IRemoteControl/SetTransportEnabled", ReplyAction="http://Microsoft.ServiceModel.Samples/IRemoteControl/SetTransportEnabledResponse")]          [System.ServiceModel.OperationContractAttribute(Action="http://Microsoft.ServiceModel.Samples/IRemoteControl/SetTransportEnabled", ReplyAction="http://Microsoft.ServiceModel.Samples/IRemoteControl/SetTransportEnabledResponse")]
168          void SetTransportEnabled(string transport, bool enabled);          void SetTransportEnabled(string transport, bool enabled);
169                    
         [System.ServiceModel.OperationContractAttribute(Action="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportLastrunOk", ReplyAction="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportLastrunOkRespons" +  
             "e")]  
         bool GetTransportLastrunOk(string transport);  
           
         [System.ServiceModel.OperationContractAttribute(Action="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportLastErrorMessage" +  
             "", ReplyAction="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportLastErrorMessage" +  
             "Response")]  
         string GetTransportLastErrorMessage(string transport);  
           
         [System.ServiceModel.OperationContractAttribute(Action="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportLastOkTime", ReplyAction="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportLastOkTimeRespon" +  
             "se")]  
         string GetTransportLastOkTime(string transport);  
           
         [System.ServiceModel.OperationContractAttribute(Action="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportLastErrorTime", ReplyAction="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportLastErrorTimeRes" +  
             "ponse")]  
         string GetTransportLastErrorTime(string transport);  
           
         [System.ServiceModel.OperationContractAttribute(Action="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportCounter", ReplyAction="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportCounterResponse")]  
         int GetTransportCounter(string transport);  
           
170          [System.ServiceModel.OperationContractAttribute(Action="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportLog", ReplyAction="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportLogResponse")]          [System.ServiceModel.OperationContractAttribute(Action="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportLog", ReplyAction="http://Microsoft.ServiceModel.Samples/IRemoteControl/GetTransportLogResponse")]
171          string[] GetTransportLog(string transport);          string[] GetTransportLog(string transport);
172                    
# Line 99  namespace DaoMqGUI.ServiceReference1 { Line 222  namespace DaoMqGUI.ServiceReference1 {
222              return base.Channel.GetTransports();              return base.Channel.GetTransports();
223          }          }
224                    
225          public bool GetTransportEnabled(string transport) {          public DaoMqGUI.ServiceReference1.StatusData GetTransportStatus(string transport) {
226              return base.Channel.GetTransportEnabled(transport);              return base.Channel.GetTransportStatus(transport);
227          }          }
228                    
229          public void SetTransportEnabled(string transport, bool enabled) {          public void SetTransportEnabled(string transport, bool enabled) {
230              base.Channel.SetTransportEnabled(transport, enabled);              base.Channel.SetTransportEnabled(transport, enabled);
231          }          }
232                    
         public bool GetTransportLastrunOk(string transport) {  
             return base.Channel.GetTransportLastrunOk(transport);  
         }  
           
         public string GetTransportLastErrorMessage(string transport) {  
             return base.Channel.GetTransportLastErrorMessage(transport);  
         }  
           
         public string GetTransportLastOkTime(string transport) {  
             return base.Channel.GetTransportLastOkTime(transport);  
         }  
           
         public string GetTransportLastErrorTime(string transport) {  
             return base.Channel.GetTransportLastErrorTime(transport);  
         }  
           
         public int GetTransportCounter(string transport) {  
             return base.Channel.GetTransportCounter(transport);  
         }  
           
233          public string[] GetTransportLog(string transport) {          public string[] GetTransportLog(string transport) {
234              return base.Channel.GetTransportLog(transport);              return base.Channel.GetTransportLog(transport);
235          }          }

Legend:
Removed from v.1999  
changed lines
  Added in v.2000

  ViewVC Help
Powered by ViewVC 1.1.20