예제 #1
0
 public override IPolicyObject DeepCopy(bool readOnly, bool bCreateNewId)
 {
     Channel readOnlyCopy = new Channel(this, readOnly, bCreateNewId);
     return readOnlyCopy;
 }
예제 #2
0
 public Channel(Channel rhs, bool readOnly, bool createNewId)
     : base(rhs, readOnly, createNewId)
 {
     SetType(rhs.Type);
 }