2 instantiations of CreateContactCompletedEventArgs
System.Net (2)
net\PeerToPeer\Collaboration\ContactManager.cs (2)
1580
createContactCompletedArgs = new
CreateContactCompletedEventArgs
(peerContact, null, false, userToken);
1583
createContactCompletedArgs = new
CreateContactCompletedEventArgs
(peerContact, ex, false, userToken);
8 references to CreateContactCompletedEventArgs
System.Net (8)
net\PeerToPeer\Collaboration\ContactManager.cs (8)
1475
private event EventHandler<
CreateContactCompletedEventArgs
> m_createContactCompleted;
1476
public event EventHandler<
CreateContactCompletedEventArgs
> CreateContactCompleted
1578
CreateContactCompletedEventArgs
createContactCompletedArgs;
1589
void OnCreateContactCompleted(
CreateContactCompletedEventArgs
e)
1591
EventHandler<
CreateContactCompletedEventArgs
> handlerCopy = m_createContactCompleted;
1600
CreateContactCompletedEventArgs
args = (
CreateContactCompletedEventArgs
) operationState;
1609
internal void PrepareToRaiseCreateContactCompletedEvent(AsyncOperation asyncOP,
CreateContactCompletedEventArgs
args)