Example #1
0
 private SledDebugServiceEventArgs(ISledTarget target, string[] msg, Scmp.IScmp scmp)
 {
     m_target = target;
     m_msg = msg;
     m_scmp = scmp;
 }
Example #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="target">Target</param>
 /// <param name="scmp">SLED Control Message Protocol (SCMP) payload</param>
 public SledDebugServiceEventArgs(ISledTarget target, Scmp.IScmp scmp)
     : this(target, null, scmp)
 {
 }