SIL.FieldWorks.FDO.DomainServices.DataMigration.Version19WritingSystemDefn.WriteSpecialValue C# (CSharp) Method

WriteSpecialValue() private method

private WriteSpecialValue ( XmlWriter writer, string field, string value ) : void
writer System.Xml.XmlWriter
field string
value string
return void
		private void WriteSpecialValue(XmlWriter writer, string field, string value)
		{
			if (String.IsNullOrEmpty(value))
			{
				return;
			}
			writer.WriteStartElement(field, _nameSpaceManager.LookupNamespace("palaso"));
			writer.WriteAttributeString("value", value);
			writer.WriteEndElement();
		}