SIL.FieldWorks.FDO.DomainServices.DataMigration.Version19WritingSystemDefn.WriteElementWithAttribute C# (CSharp) Méthode

WriteElementWithAttribute() private méthode

private WriteElementWithAttribute ( XmlWriter writer, string elementName, string attributeName, string value ) : void
writer System.Xml.XmlWriter
elementName string
attributeName string
value string
Résultat void
		private void WriteElementWithAttribute(XmlWriter writer, string elementName, string attributeName, string value)
		{
			writer.WriteStartElement(elementName);
			writer.WriteAttributeString(attributeName, value);
			writer.WriteEndElement();
		}