Sage.SageException.GetTransformArguments C# (CSharp) Method

GetTransformArguments() protected method

Gets the XSLT arguments to use with the transform.
protected GetTransformArguments ( SageContext context ) : object>.Dictionary
context SageContext The current context.
return object>.Dictionary
        protected virtual Dictionary<string, object> GetTransformArguments(SageContext context)
        {
            Dictionary<string, object> arguments = new Dictionary<string, object>();
            arguments.Add("developer", context.IsDeveloperRequest ? 1 : 0);
            return arguments;
        }