C# Class SobekCM.Core.XSLT.XSLT_Transformer

Mostra file Open project: MarkVSullivan/SobekCM-Web-Application

Public Methods

Method Description
Native_Transform ( string SourceFile, string XSLT_File ) : XSLT_Transformer_ReturnArgs

Use the native .NET library to transform a source XML file with the XSLT file and return the string

Native_Transform ( string SourceFile, string XSLT_File, string OutputFile ) : XSLT_Transformer_ReturnArgs

Use the native .NET library to transform a source XML file into an output file with the XSLT file

Saxon_Transform ( string SourceFile, string XSLT_File ) : XSLT_Transformer_ReturnArgs

Use the Saxon-HE library to transform a source XML file with the XSLT file and return the string

Saxon_Transform ( string SourceFile, string XSLT_File, string OutputFile ) : XSLT_Transformer_ReturnArgs

Use the Saxon-HE library to transform a source XML file into an output file with the XSLT file

Transform ( string SourceFile, string XSLT_File ) : XSLT_Transformer_ReturnArgs

Use the version-appropriate library to transform a source XML file with the XSLT file and return the string

Transform ( string SourceFile, string XSLT_File, int XSLT_Version ) : XSLT_Transformer_ReturnArgs

Use the version-appropriate library to transform a source XML file with the XSLT file and return the string

Transform ( string SourceFile, string XSLT_File, int XSLT_Version, string OutputFile ) : XSLT_Transformer_ReturnArgs

Use the version-appropriate library to transform a source XML file into an output file with the XSLT file

Transform ( string SourceFile, string XSLT_File, string OutputFile ) : XSLT_Transformer_ReturnArgs

Use the version-appropriate library to transform a source XML file into an output file with the XSLT file

Private Methods

Method Description
get_xslt_version ( string XSLT_File ) : int

Gets the XSLT version from the specified XSLT file

Method Details

Native_Transform() public static method

Use the native .NET library to transform a source XML file with the XSLT file and return the string
public static Native_Transform ( string SourceFile, string XSLT_File ) : XSLT_Transformer_ReturnArgs
SourceFile string Source XML file, to be transformed
XSLT_File string XSLT file to perform the transform
return XSLT_Transformer_ReturnArgs

Native_Transform() public static method

Use the native .NET library to transform a source XML file into an output file with the XSLT file
public static Native_Transform ( string SourceFile, string XSLT_File, string OutputFile ) : XSLT_Transformer_ReturnArgs
SourceFile string Source XML file, to be transformed
XSLT_File string XSLT file to perform the transform
OutputFile string Resulting output file to write
return XSLT_Transformer_ReturnArgs

Saxon_Transform() public static method

Use the Saxon-HE library to transform a source XML file with the XSLT file and return the string
public static Saxon_Transform ( string SourceFile, string XSLT_File ) : XSLT_Transformer_ReturnArgs
SourceFile string Source XML file, to be transformed
XSLT_File string XSLT file to perform the transform
return XSLT_Transformer_ReturnArgs

Saxon_Transform() public static method

Use the Saxon-HE library to transform a source XML file into an output file with the XSLT file
public static Saxon_Transform ( string SourceFile, string XSLT_File, string OutputFile ) : XSLT_Transformer_ReturnArgs
SourceFile string Source XML file, to be transformed
XSLT_File string XSLT file to perform the transform
OutputFile string Resulting output file to write
return XSLT_Transformer_ReturnArgs

Transform() public static method

Use the version-appropriate library to transform a source XML file with the XSLT file and return the string
public static Transform ( string SourceFile, string XSLT_File ) : XSLT_Transformer_ReturnArgs
SourceFile string Source XML file, to be transformed
XSLT_File string XSLT file to perform the transform
return XSLT_Transformer_ReturnArgs

Transform() public static method

Use the version-appropriate library to transform a source XML file with the XSLT file and return the string
public static Transform ( string SourceFile, string XSLT_File, int XSLT_Version ) : XSLT_Transformer_ReturnArgs
SourceFile string Source XML file, to be transformed
XSLT_File string XSLT file to perform the transform
XSLT_Version int Version of the XSLT ( either 1,2, or 3)
return XSLT_Transformer_ReturnArgs

Transform() public static method

Use the version-appropriate library to transform a source XML file into an output file with the XSLT file
public static Transform ( string SourceFile, string XSLT_File, int XSLT_Version, string OutputFile ) : XSLT_Transformer_ReturnArgs
SourceFile string Source XML file, to be transformed
XSLT_File string XSLT file to perform the transform
XSLT_Version int Version of the XSLT ( either 1,2, or 3)
OutputFile string Resulting output file to write
return XSLT_Transformer_ReturnArgs

Transform() public static method

Use the version-appropriate library to transform a source XML file into an output file with the XSLT file
public static Transform ( string SourceFile, string XSLT_File, string OutputFile ) : XSLT_Transformer_ReturnArgs
SourceFile string Source XML file, to be transformed
XSLT_File string XSLT file to perform the transform
OutputFile string Resulting output file to write
return XSLT_Transformer_ReturnArgs