コード例 #1
0
 internal ABAddressBook(IntPtr handle, bool owns)
 {
     InitConstants.Init();
     if (!owns)
     {
         CFObject.CFRetain(handle);
     }
     this.handle = handle;
 }
コード例 #2
0
 static ABGroupProperty()
 {
     InitConstants.Init();
 }
コード例 #3
0
 internal ABAddressBook(IntPtr handle)
 {
     InitConstants.Init();
     this.handle = handle;
 }
コード例 #4
0
        public ABAddressBook()
        {
            this.handle = ABAddressBookCreate();

            InitConstants.Init();
        }
コード例 #5
0
 internal ABAddressBook(NativeHandle handle, bool owns)
     : base(handle, owns)
 {
     InitConstants.Init();
 }