internal ABAddressBook(IntPtr handle, bool owns)
 {
     InitConstants.Init();
     if (!owns)
     {
         CFObject.CFRetain(handle);
     }
     this.handle = handle;
 }
Exemple #2
0
 static ABGroupProperty()
 {
     InitConstants.Init();
 }
 internal ABAddressBook(IntPtr handle)
 {
     InitConstants.Init();
     this.handle = handle;
 }
        public ABAddressBook()
        {
            this.handle = ABAddressBookCreate();

            InitConstants.Init();
        }
 internal ABAddressBook(NativeHandle handle, bool owns)
     : base(handle, owns)
 {
     InitConstants.Init();
 }