protected internal virtual void OnNewPersonComplete(ABNewPersonCompleteEventArgs e)
        {
            var h = EnsureEventDelegate().newPersonComplete;

            if (h != null)
            {
                h(this, e);
            }
        }
示例#2
0
 protected internal virtual void OnNewPersonComplete(ABNewPersonCompleteEventArgs e)
 {
     var h = EnsureEventDelegate ().newPersonComplete;
     if (h != null)
         h (this, e);
 }