|
Revision 4527, 1.1 kB
(checked in by xmlhacker, 1 year ago)
|
another checkpoint
|
- Property svn:executable set to
*
|
| Line | |
|---|
| 1 |
using System; |
|---|
| 2 |
using Nuxleus.Agent; |
|---|
| 3 |
|
|---|
| 4 |
namespace Nuxleus.Transform { |
|---|
| 5 |
|
|---|
| 6 |
public struct TransformResponse : IResponse { |
|---|
| 7 |
|
|---|
| 8 |
Guid m_id; |
|---|
| 9 |
string m_transformResult; |
|---|
| 10 |
DateTime m_timeStamp; |
|---|
| 11 |
|
|---|
| 12 |
public Guid ID { get { return m_id; } } |
|---|
| 13 |
public string TransformResult { get { return m_transformResult; } set { m_transformResult = value; } } |
|---|
| 14 |
public DateTime Timestamp { get { return m_timeStamp; } set { m_timeStamp = value; } } |
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
#region IResponse Members |
|---|
| 18 |
|
|---|
| 19 |
public object Result { |
|---|
| 20 |
get { |
|---|
| 21 |
throw new Exception("The method or operation is not implemented."); |
|---|
| 22 |
} |
|---|
| 23 |
set { |
|---|
| 24 |
throw new Exception("The method or operation is not implemented."); |
|---|
| 25 |
} |
|---|
| 26 |
} |
|---|
| 27 |
|
|---|
| 28 |
public string Message { |
|---|
| 29 |
get { |
|---|
| 30 |
throw new Exception("The method or operation is not implemented."); |
|---|
| 31 |
} |
|---|
| 32 |
set { |
|---|
| 33 |
throw new Exception("The method or operation is not implemented."); |
|---|
| 34 |
} |
|---|
| 35 |
} |
|---|
| 36 |
|
|---|
| 37 |
#endregion |
|---|
| 38 |
} |
|---|
| 39 |
} |
|---|