3 instantiations of SubscribeCompletedEventArgs
System.Net (3)
net\PeerToPeer\Collaboration\MyContact.cs (1)
576
this.PrepareToRaiseSubscribeCompletedEvent(AsyncOp, new
SubscribeCompletedEventArgs
(null, this, null, false, userToken));
net\PeerToPeer\Collaboration\PeerContact.cs (2)
492
subscribeArgs = new
SubscribeCompletedEventArgs
(null, this, null, false, AsyncOp.UserSuppliedState);
495
subscribeArgs = new
SubscribeCompletedEventArgs
(null, null, ex, false, AsyncOp.UserSuppliedState);
7 references to SubscribeCompletedEventArgs
System.Net (7)
net\PeerToPeer\Collaboration\PeerContact.cs (7)
490
SubscribeCompletedEventArgs
subscribeArgs;
529
private event EventHandler<
SubscribeCompletedEventArgs
> m_subscribeCompleted;
530
public event EventHandler<
SubscribeCompletedEventArgs
> SubscribeCompleted
575
protected void OnSubscribeCompleted(
SubscribeCompletedEventArgs
e)
577
EventHandler<
SubscribeCompletedEventArgs
> handlerCopy = m_subscribeCompleted;
588
OnSubscribeCompleted((
SubscribeCompletedEventArgs
)operationState);
591
internal void PrepareToRaiseSubscribeCompletedEvent(AsyncOperation asyncOP,
SubscribeCompletedEventArgs
args)