Hie.Core.Model.XmlToHl7Converter.Characters C# (CSharp) Метод

Characters() публичный Метод

public Characters ( string text ) : void
text string
Результат void
		public void Characters(string text)
		{
			/*
         * Write the substring to the output buffer, unless it is the field separators (to avoid
         * MSH.1. being written out).
         */
			if (_inElement && !text.Equals(_fieldSeparator))
			{
				_output.Append(text);
			}
		}