Example #1
0
 /// <summary>
 /// Apply only a <see cref="CommandSet"/>. This results in NO dataSet.
 /// </summary>
 /// <param name="commandSet"></param>
 public void Apply(CommandSet commandSet)
 {
     if (commandSet == null) throw new System.ArgumentNullException("commandSet");
     this.CommandSet = commandSet;
     this.DataSet = null;
     this.EncodedPresentationContextID = unchecked((byte)-1);
 }
Example #2
0
 /// <summary>
 /// Apply only a <see cref="CommandSet"/>. This results in NO dataSet.
 /// </summary>
 /// <param name="commandSet">command set</param>
 public void Apply(CommandSet commandSet)
 {
     if (commandSet == null) throw new System.ArgumentNullException("commandSet");
     this.CommandSet = commandSet;
     this.DataSet = null;
 }
Example #3
0
 /// <summary>
 /// Apply only a <see cref="CommandSet"/>. This results in NO dataSet.
 /// </summary>
 /// <param name="commandSet">command set</param>
 /// <param name="encodedPCID">Presentation context ID in which message is encoded</param>
 public void Apply(CommandSet commandSet, Byte encodedPCID)
 {
     if (commandSet == null) throw new System.ArgumentNullException("commandSet");
     this.CommandSet = commandSet;
     this.DataSet = null;
     this.EncodedPresentationContextID = encodedPCID;
 }