Skip to content

Instantly share code, notes, and snippets.

@5up3rman
Created July 13, 2017 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 5up3rman/1b0d7e62f9fafb71f56911d644afc8be to your computer and use it in GitHub Desktop.
Save 5up3rman/1b0d7e62f9fafb71f56911d644afc8be to your computer and use it in GitHub Desktop.
Render Page Assets Args
using System;
using System.Collections.Generic;
using System.Web.UI;
using Sitecore.Pipelines;
namespace EditorEnhancementToolkit.Foundation.ContentEditor.Pipelines.RenderPageAssets
{
[Serializable]
public class RenderPageAssetsArgs : PipelineArgs
{
public List<string> FilePaths { get; set; } = new List<string>();
public string FileMatchPattern { get; }
public RenderPageAssetsArgs()
{
}
private Control control;
public Control Control
{
get
{
return control;
}
set
{
control = value;
if (control == null)
return;
this.AbortPipeline();
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment