Microsoft.Protocols.TestSuites.Pccrtp.Logger.AddWarning C# (CSharp) Method

AddWarning() public method

The method implements adding the log of warning information.
public AddWarning ( string message ) : void
message string Message reprents the log information.
return void
        public void AddWarning(string message)
        {
            this.site.Log.Add(LogEntryKind.Warning, message);
        }