Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save hishaamn/04e359fc2be8ee9664fb13ada853a5ee to your computer and use it in GitHub Desktop.

Select an option

Save hishaamn/04e359fc2be8ee9664fb13ada853a5ee to your computer and use it in GitHub Desktop.
Argument class to pass data through pipelines
public class DownloadEventIndexableLoadFieldsPipelineArgs : IndexableLoadFieldsPipelineArgs
{
public DownloadEventIndexableLoadFieldsPipelineArgs(PageEventData eventData, string url, Guid interactionId, Guid contactId)
{
this.EventData = eventData;
this.Url = url;
this.InteractionId = interactionId;
this.ContactId = contactId;
}
public PageEventData EventData { get; private set; }
public string Url { get; private set; }
public Guid InteractionId { get; private set; }
public Guid ContactId { get; private set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment