Created
June 5, 2018 19:44
-
-
Save hishaamn/04e359fc2be8ee9664fb13ada853a5ee to your computer and use it in GitHub Desktop.
Argument class to pass data through pipelines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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