Interface IFileTransformer
Defines the file transformer.
Inherited Members
Namespace: Platform.RegularExpressions.Transformer
Assembly: Platform.RegularExpressions.Transformer.dll
Syntax
public interface IFileTransformer : ITransformer
Properties
| Improve this Doc View SourceSourceFileExtension
Gets the source file extension value.
Declaration
string SourceFileExtension { get; }
Property Value
Type | Description |
---|---|
String |
TargetFileExtension
Gets the target file extension value.
Declaration
string TargetFileExtension { get; }
Property Value
Type | Description |
---|---|
String |
Methods
| Improve this Doc View SourceTransform(String, String)
Transforms the source path.
Declaration
void Transform(string sourcePath, string targetPath)
Parameters
Type | Name | Description |
---|---|---|
String | sourcePath | The source path.
|
String | targetPath | The target path.
|