Class DumpExtensionMethods
Assembly: Log73.dll
View Source
Declaration
public static class DumpExtensionMethods
Methods
Dump(Object)
Logs the object to console using the Log73.LogType specified in <see cref="!:Log73Options.DumpLogType"></see>.
View Source
Declaration
public static void Dump(this object obj)
Parameters
Type | Name |
---|---|
System.Object | obj |
DumpInfo(Object)
Logs the object to console using the Log73.MessageTypes.Info Log73.MessageType.
View Source
Declaration
public static void DumpInfo(this object obj)
Parameters
Type | Name |
---|---|
System.Object | obj |
DumpWarn(Object)
Logs the object to console using the Log73.MessageTypes.Warn Log73.MessageType.
View Source
Declaration
public static void DumpWarn(this object obj)
Parameters
Type | Name |
---|---|
System.Object | obj |
DumpError(Object)
Logs the object to console using the Log73.MessageTypes.Error Log73.MessageType.
View Source
Declaration
public static void DumpError(this object obj)
Parameters
Type | Name |
---|---|
System.Object | obj |
DumpDebug(Object)
Logs the object to console using the Log73.MessageTypes.Debug Log73.MessageType.
View Source
Declaration
public static void DumpDebug(this object obj)
Parameters
Type | Name |
---|---|
System.Object | obj |
DumpTask(Task, String)
Log a System.Threading.Tasks.Task
's start and failing or finishing.
View Source
Declaration
public static void DumpTask(this Task task, string name)
Parameters
Type | Name |
---|---|
System.Threading.Tasks.Task | task |
System.String | name |