5 instantiations of InviteCompletedEventArgs
System.Net (5)
net\PeerToPeer\Collaboration\Peer.cs (5)
1269inviteCompletedArgs = new InviteCompletedEventArgs(new PeerInvitationResponse(pir.action), null, false, 1323inviteCompletedArgs = new InviteCompletedEventArgs(new PeerInvitationResponse(PeerInvitationResponseType.Declined), null, false, 1328inviteCompletedArgs = new InviteCompletedEventArgs(new PeerInvitationResponse(PeerInvitationResponseType.Expired), null, false, 1333inviteCompletedArgs = new InviteCompletedEventArgs(null, (m_latestException != null ? m_latestException : new PeerToPeerException("InviteAsync failure.")), false, 1393InviteCompletedEventArgs e = new InviteCompletedEventArgs(null, null, true, m_AsyncOp.UserSuppliedState);
8 references to InviteCompletedEventArgs
System.Net (8)
net\PeerToPeer\Collaboration\Peer.cs (8)
768private event EventHandler<InviteCompletedEventArgs> m_inviteCompleted; 769public event EventHandler<InviteCompletedEventArgs> InviteCompleted 845protected virtual void OnInviteCompleted(InviteCompletedEventArgs e) 847EventHandler<InviteCompletedEventArgs> handlerCopy = m_inviteCompleted; 857OnInviteCompleted((InviteCompletedEventArgs)operationState); 860internal void PrepareToRaiseInviteCompletedEvent(AsyncOperation asyncOP, InviteCompletedEventArgs args) 1238InviteCompletedEventArgs inviteCompletedArgs = null; 1393InviteCompletedEventArgs e = new InviteCompletedEventArgs(null, null, true, m_AsyncOp.UserSuppliedState);