Sage.SageHelpException.GetTransformArguments C# (CSharp) Method

GetTransformArguments() protected method

protected GetTransformArguments ( SageContext context ) : object>.Dictionary
context SageContext
return object>.Dictionary
        protected override Dictionary<string, object> GetTransformArguments(SageContext context)
        {
            Dictionary<string, object> arguments = base.GetTransformArguments(context);
            arguments.Add("problemType", this.Problem.Type.ToString());
            if (this.Problem.FilePath != null)
                arguments.Add("path", this.Problem.FilePath);

            return arguments;
        }