IT Hit User File System 
            Logs debug message.
            
 
    Namespace: 
   ITHit.FileSystem
    Assembly:
   ITHit.FileSystem (in ITHit.FileSystem.dll) Version: 9.0.29552.0
Syntaxvoid LogDebug(
	string message,
	string sourcePath = null,
	string targetPath = null,
	IOperationContext operationContext = null,
	IMetadata metadata = null,
	int callerLineNumber = 0,
	string callerMemberName = null,
	string callerFilePath = null
)
Sub LogDebug ( 
	message As String,
	Optional sourcePath As String = Nothing,
	Optional targetPath As String = Nothing,
	Optional operationContext As IOperationContext = Nothing,
	Optional metadata As IMetadata = Nothing,
	Optional callerLineNumber As Integer = 0,
	Optional callerMemberName As String = Nothing,
	Optional callerFilePath As String = Nothing
)
void LogDebug(
	String^ message, 
	String^ sourcePath = nullptr, 
	String^ targetPath = nullptr, 
	IOperationContext^ operationContext = nullptr, 
	IMetadata^ metadata = nullptr, 
	int callerLineNumber = 0, 
	String^ callerMemberName = nullptr, 
	String^ callerFilePath = nullptr
)
abstract LogDebug : 
        message : string * 
        ?sourcePath : string * 
        ?targetPath : string * 
        ?operationContext : IOperationContext * 
        ?metadata : IMetadata * 
        ?callerLineNumber : int * 
        ?callerMemberName : string * 
        ?callerFilePath : string 
(* Defaults:
        let _sourcePath = defaultArg sourcePath null
        let _targetPath = defaultArg targetPath null
        let _operationContext = defaultArg operationContext null
        let _metadata = defaultArg metadata null
        let _callerLineNumber = defaultArg callerLineNumber 0
        let _callerMemberName = defaultArg callerMemberName null
        let _callerFilePath = defaultArg callerFilePath null
*)
-> unit 
Parameters
- message
 - Type: SystemString
Debug message to be logged. - sourcePath (Optional)
 - Type: SystemString
Path in user file system to the file or folder that this message is about. - targetPath (Optional)
 - Type: SystemString
Path to the target file or folder path in case of move of rename. - operationContext (Optional)
 - Type: ITHit.FileSystemIOperationContext
Provides information about the environment. - metadata (Optional)
 - Type: ITHit.FileSystemIMetadata
File or folder metadata. - callerLineNumber (Optional)
 - Type: SystemInt32
 - callerMemberName (Optional)
 - Type: SystemString
 - callerFilePath (Optional)
 - Type: SystemString
 
See Also