Sage.SageException.GetTransformArguments C# (CSharp) 메소드

GetTransformArguments() 보호된 메소드

Gets the XSLT arguments to use with the transform.
protected GetTransformArguments ( SageContext context ) : object>.Dictionary
context SageContext The current context.
리턴 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;
        }