Tp.Integration.Messages.ServiceBus.Serialization.ObjectInfo.ToString C# (CSharp) Method

ToString() public method

ToString()
public ToString ( ) : string
return string
		public override string ToString()
		{
			string n = Name;
			if (String.IsNullOrEmpty(n))
				n = "<Name not set>";

			string t = Type;
			if (String.IsNullOrEmpty(t))
				t = "<Type not set>";

			string a = Type;
			if (String.IsNullOrEmpty(a))
				a = "<Assembly not set>";

			return n + "; " + t + "; " + a;
		}
ObjectInfo