Rhino.Context.ReportWarning C# (CSharp) Method

ReportWarning() public static method

Report a warning using the error reporter for the current thread.
Report a warning using the error reporter for the current thread.
public static ReportWarning ( string message ) : void
message string the warning message to report
return void
		public static void ReportWarning(string message)
		{
			int[] linep = new int[] { 0 };
			string filename = GetSourcePositionFromStack(linep);
			Rhino.Context.ReportWarning(message, filename, linep[0], null, 0);
		}

Same methods

Context::ReportWarning ( string message, Exception t ) : void
Context::ReportWarning ( string message, string sourceName, int lineno, string lineSource, int lineOffset ) : void
Context