Ejemplo n.º 1
0
 //
 // Initialize the wrapper with an existing variant (presumably a server or session object).
 // This constructor will throw an exception if QueryInterface for IMailMsgLoggingPropertyBag fails.
 //
 public MailMsgLoggingPropertyBag(
     Object propBag)
     : base(propBag)
 {
     this.propBag = (IMailMsgLoggingPropertyBag) propBag;
 }
Ejemplo n.º 2
0
        //
        // Constructors
        //

        //
        // Initialize the wrapper with an existing IMailMsgLoggingPropertyBag object.
        //
        public MailMsgLoggingPropertyBag(
            IMailMsgLoggingPropertyBag propBag) :
            base((IMailMsgPropertyBag)propBag)
        {
            this.propBag = propBag;
        }
Ejemplo n.º 3
0
 //
 // Constructors
 //
 //
 // Initialize the wrapper with an existing IMailMsgLoggingPropertyBag object.
 //
 public MailMsgLoggingPropertyBag(
     IMailMsgLoggingPropertyBag propBag)
     : base((IMailMsgPropertyBag) propBag)
 {
     this.propBag = propBag;
 }