Rev 90 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 90 | Rev 97 | ||
---|---|---|---|
Line 57... | Line 57... | ||
57 | DsspDefaultLookup, |
57 | DsspDefaultLookup, |
58 | DsspDefaultDrop, |
58 | DsspDefaultDrop, |
59 | Get, |
59 | Get, |
60 | HttpGet, |
60 | HttpGet, |
61 | Replace, |
61 | Replace, |
- | 62 | InitComplete, |
|
62 | SetComPort, |
63 | SetComPort, |
63 | ReceiveCommand, |
64 | ReceiveCommand, |
64 | SendCommand, |
65 | SendCommand, |
65 | Level, |
66 | Level, |
66 | Control, |
67 | Control, |
Line 106... | Line 107... | ||
106 | public class Replace : Replace<RoboBoardState, PortSet<DefaultReplaceResponseType, Fault>> |
107 | public class Replace : Replace<RoboBoardState, PortSet<DefaultReplaceResponseType, Fault>> |
107 | { |
108 | { |
108 | } |
109 | } |
Line 109... | Line 110... | ||
109 | 110 | ||
- | 111 | //------------------------------------------------------------------------- |
|
- | 112 | // Init Complete Handler |
|
- | 113 | // tbd |
|
- | 114 | public class InitComplete : Update<InitCompleteRequest, |
|
- | 115 | PortSet<DefaultUpdateResponseType, Fault>> |
|
- | 116 | { |
|
- | 117 | public InitComplete() |
|
- | 118 | { |
|
- | 119 | } |
|
- | 120 | ||
- | 121 | public InitComplete(string Command) |
|
- | 122 | : base(new InitCompleteRequest(Command)) |
|
- | 123 | { |
|
- | 124 | } |
|
- | 125 | } |
|
- | 126 | ||
- | 127 | [DataContract] |
|
- | 128 | public class InitCompleteRequest |
|
- | 129 | { |
|
- | 130 | public InitCompleteRequest() |
|
- | 131 | { |
|
- | 132 | } |
|
- | 133 | ||
- | 134 | public InitCompleteRequest(string command) |
|
- | 135 | { |
|
- | 136 | Command = command; |
|
- | 137 | } |
|
- | 138 | ||
- | 139 | private string _Command; |
|
- | 140 | ||
- | 141 | [DataMember] |
|
- | 142 | public string Command |
|
- | 143 | { |
|
- | 144 | get { return _Command; } |
|
- | 145 | set { _Command = value; } |
|
- | 146 | } |
|
- | 147 | } |
|
- | 148 | ||
110 | //------------------------------------------------------------------------- |
149 | //------------------------------------------------------------------------- |
111 | // Set Com Port Handler |
150 | // Set Com Port Handler |
112 | public class SetComPort : Update<SetComPortRequest, |
151 | public class SetComPort : Update<SetComPortRequest, |
113 | PortSet<DefaultUpdateResponseType, Fault>> |
152 | PortSet<DefaultUpdateResponseType, Fault>> |
114 | { |
153 | { |