  | ILogInfoFormat Method (IFormatProvider, FormatMessageCallback, String, String, Int32) | 
[This is preliminary documentation and is subject to change.]
            Logs a new information entry.
            
 
Namespace: YallaAssembly: Yalla.Core (in Yalla.Core.dll) Version: 1.0.5813.1925
Syntaxvoid InfoFormat(
	IFormatProvider formatProvider,
	FormatMessageCallback formatMessageCallback,
	string filePath = null,
	string memberName = null,
	int lineNumber = 0
)
Sub InfoFormat ( 
	formatProvider As IFormatProvider,
	formatMessageCallback As FormatMessageCallback,
	Optional filePath As String = Nothing,
	Optional memberName As String = Nothing,
	Optional lineNumber As Integer = 0
)
void InfoFormat(
	IFormatProvider^ formatProvider, 
	FormatMessageCallback^ formatMessageCallback, 
	String^ filePath = nullptr, 
	String^ memberName = nullptr, 
	int lineNumber = 0
)
abstract InfoFormat : 
        formatProvider : IFormatProvider * 
        formatMessageCallback : FormatMessageCallback * 
        ?filePath : string * 
        ?memberName : string * 
        ?lineNumber : int 
(* Defaults:
        let _filePath = defaultArg filePath null
        let _memberName = defaultArg memberName null
        let _lineNumber = defaultArg lineNumber 0
*)
-> unit 
Parameters
- formatProvider
 - Type: SystemIFormatProvider
Format provider. - formatMessageCallback
 - Type: YallaFormatMessageCallback
Format message callback delegate. - filePath (Optional)
 - Type: SystemString
File path (populated by the compiler). - memberName (Optional)
 - Type: SystemString
Member name (populated by the compiler). - lineNumber (Optional)
 - Type: SystemInt32
Line number (populated by the compiler). 
See Also