Calyptus.Lob.StringClob.StringClob C# (CSharp) Method

StringClob() public method

public StringClob ( string text ) : System.IO
text string
return System.IO
		public StringClob(string text)
		{
			if (text == null) throw new ArgumentNullException("text");
			this.text = text;
		}