diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-08-13 14:22:32 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-08-13 14:22:32 +0300 |
| commit | 4490b0a76d4188cb285d62b106e208803ceaa133 (patch) | |
| tree | a24f3d5653979ebaff86b524f452d20c74df3327 /Software/Visual_Studio/PPC/Tango.PPC.Common/Connection/MachineOperatorChangedEventArgs.cs | |
| parent | d3c0c73dc2aeae2dacf4224ce7997609132426a1 (diff) | |
| download | Tango-4490b0a76d4188cb285d62b106e208803ceaa133.tar.gz Tango-4490b0a76d4188cb285d62b106e208803ceaa133.zip | |
PPC.Common Logs and comments!
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Connection/MachineOperatorChangedEventArgs.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/Connection/MachineOperatorChangedEventArgs.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Connection/MachineOperatorChangedEventArgs.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Connection/MachineOperatorChangedEventArgs.cs index 15cb66e05..310681868 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Connection/MachineOperatorChangedEventArgs.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Connection/MachineOperatorChangedEventArgs.cs @@ -7,11 +7,27 @@ using Tango.Integration.Operation; namespace Tango.PPC.Common.Connection { + /// <summary> + /// Represents the <see cref="IMachineProvider.MachineOperatorChanged"/> event arguments. + /// </summary> + /// <seealso cref="System.EventArgs" /> public class MachineOperatorChangedEventArgs : EventArgs { + /// <summary> + /// Gets the old machine operator. + /// </summary> public IMachineOperator OldMachineOperator { get; private set; } + + /// <summary> + /// Gets the new machine operator. + /// </summary> public IMachineOperator MachineOperator { get; private set; } + /// <summary> + /// Initializes a new instance of the <see cref="MachineOperatorChangedEventArgs"/> class. + /// </summary> + /// <param name="oldOperator">The old operator.</param> + /// <param name="newOperator">The new operator.</param> public MachineOperatorChangedEventArgs(IMachineOperator oldOperator, IMachineOperator newOperator) { OldMachineOperator = oldOperator; |
