Opc.Ua.ServiceResultException.ToLongString C# (CSharp) Method

ToLongString() public method

Returns a formatted string with the contents of exeception.
public ToLongString ( ) : string
return string
		public string ToLongString()
		{
			StringBuilder buffer = new StringBuilder();

			buffer.Append(Message);
			buffer.Append("\r\n");
			buffer.Append(m_status.ToLongString());

			return buffer.ToString();
		}
		#endregion