19 references to EventName
System.Workflow.Activities (19)
EventSinkActivity.cs (11)
191string eventName = this.EventName;
203throw new InvalidOperationException(SR.GetString(SR.MethodInfoMissing, this.EventName, this.InterfaceType.Name));
219string eventName = this.EventName;
289ActivityExecutionStatus status = InboundActivityHelper.ExecuteForActivity(this, executionContext, this.InterfaceType, this.EventName, out args);
302this.ActivitySubscribed = CorrelationService.Subscribe(executionContext, this, this.InterfaceType, this.EventName, this, this.WorkflowInstanceId);
342CorrelationService.Unsubscribe(context, this, this.InterfaceType, this.EventName, this);
356ActivityExecutionStatus status = InboundActivityHelper.ExecuteForActivity(this, context, this.InterfaceType, this.EventName, out args);
390CorrelationService.Subscribe(parentContext, this, InterfaceType, EventName, parentEventHandler, this.WorkflowInstanceId);
400CorrelationService.Unsubscribe(parentContext, this, InterfaceType, EventName, parentEventHandler);
411return CorrelationService.ResolveQueueName(this, InterfaceType, EventName);
460EventInfo eventInfo = type.GetEvent(this.EventName);