Created
June 5, 2018 19:51
-
-
Save hishaamn/7e3f177f4328d8fba98d8a4146357481 to your computer and use it in GitHub Desktop.
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 abstract class DownloadIndexableLoadFieldsProcessor | |
| { | |
| public virtual void Process(DownloadEventIndexableLoadFieldsPipelineArgs args) | |
| { | |
| if (args == null) | |
| throw new ArgumentNullException(nameof(args)); | |
| args.Fields.AddRange(this.GetFields(args)); | |
| } | |
| protected abstract IEnumerable<IIndexableDataField> GetFields(DownloadEventIndexableLoadFieldsPipelineArgs args); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment