Example #1
0
 internal PropNotSetException(
     PropertyAccessor pa,
     uint dwPropId)
 {
     this.HResult = Constants.MAILMSG_E_PROPNOTFOUND;
     this.pa = pa;
     this.dwPropId = dwPropId;
 }
Example #2
0
 public PropNotSetException(
     SerializationInfo info, StreamingContext context)
     : base(info, context)
 {
     pa = (PropertyAccessor) info.GetValue("pa", typeof(PropertyAccessor));
     dwPropId = info.GetUInt32("dwPropId");
 }