BlogTalkRadio.Tools.CFT.TraceTransformationLogger.StartSection C# (CSharp) Method

StartSection() public method

Starts the section.
public StartSection ( MessageType type, string message ) : void
type MessageType The type.
message string The message.
return void
        public void StartSection(MessageType type, string message, params object[] messageArgs)
        {
            Trace.TraceInformation(message, messageArgs);
        }

Same methods

TraceTransformationLogger::StartSection ( string message ) : void