LoggerExtensionsLogUnknownDataPage(ILogger, Byte, String) Method

Logs a warning message indicating an unknown data page.

Definition

Namespace: SmallEarthTech.AntPlus.Extensions.Logging
Assembly: SmallEarthTech.AntPlus (in SmallEarthTech.AntPlus.dll) Version: 6.0.1+2b48744145fe7ef0b0e6d89d46e9cc83d8627463
C#
public static void LogUnknownDataPage(
	this ILogger logger,
	byte[] dataPage,
	string methodName = ""
)

Parameters

logger  ILogger
The logger instance.
dataPage  Byte
The data page as a byte array.
methodName  String  (Optional)
Optional: The caller member name.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ILogger. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also