C# Класс Nexus.Client.ModManagement.Scripting.XmlScript.Unparsers.Unparser

The base class for unparsers that create an XML representation of an XmlScript.
Наследование: IUnparser
Показать файл Открыть проект

Открытые методы

Метод Описание
Unparse ( ) : System.Xml.Linq.XElement

Unparses the Script into an XML document.

Unparser ( XmlScript p_xscScript ) : System

A simple constructor that initializes the object with the given values.

Защищенные методы

Метод Описание
UnparseBoolean ( bool p_booValue ) : string

Translates the given bool into the string representation used in the XML.

UnparseConditionOperator ( ConditionOperator p_copOperator ) : string

Translates the given ConditionOperator into the string representation used in the XML.

UnparseConditionallyInstalledFileSets ( ) : System.Xml.Linq.XElement

Unparses XmlScript.ConditionallyInstalledFileSets.

UnparseHeaderInfo ( ) : List

Unparses XmlScript.HeaderInfo.

UnparseInstallSteps ( ) : System.Xml.Linq.XElement

Unparses XmlScript.InstallSteps.

UnparseModPrerequisites ( ) : System.Xml.Linq.XElement

Unparses XmlScript.ModPrerequisites.

UnparseOptionGroupType ( OptionGroupType p_gtpType ) : string

Translates the given OptionGroupType into the string representation used in the XML.

UnparseOptionType ( OptionType p_otpType ) : string

Translates the given OptionType into the string representation used in the XML.

UnparsePluginState ( PluginState p_pstState ) : string

Translates the given PluginState into the string representation used in the XML.

UnparseRequiredInstallFiles ( ) : System.Xml.Linq.XElement

Unparses XmlScript.RequiredInstallFiles.

Описание методов

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

Unparses the Script into an XML document.
public Unparse ( ) : System.Xml.Linq.XElement
Результат System.Xml.Linq.XElement

UnparseBoolean() защищенный Метод

Translates the given bool into the string representation used in the XML.
protected UnparseBoolean ( bool p_booValue ) : string
p_booValue bool
Результат string

UnparseConditionOperator() защищенный Метод

Translates the given ConditionOperator into the string representation used in the XML.
protected UnparseConditionOperator ( ConditionOperator p_copOperator ) : string
p_copOperator ConditionOperator The to unparse.
Результат string

UnparseConditionallyInstalledFileSets() защищенный абстрактный Метод

Unparses XmlScript.ConditionallyInstalledFileSets.
protected abstract UnparseConditionallyInstalledFileSets ( ) : System.Xml.Linq.XElement
Результат System.Xml.Linq.XElement

UnparseHeaderInfo() защищенный абстрактный Метод

Unparses XmlScript.HeaderInfo.
protected abstract UnparseHeaderInfo ( ) : List
Результат List

UnparseInstallSteps() защищенный абстрактный Метод

Unparses XmlScript.InstallSteps.
protected abstract UnparseInstallSteps ( ) : System.Xml.Linq.XElement
Результат System.Xml.Linq.XElement

UnparseModPrerequisites() защищенный абстрактный Метод

Unparses XmlScript.ModPrerequisites.
protected abstract UnparseModPrerequisites ( ) : System.Xml.Linq.XElement
Результат System.Xml.Linq.XElement

UnparseOptionGroupType() защищенный Метод

Translates the given OptionGroupType into the string representation used in the XML.
protected UnparseOptionGroupType ( OptionGroupType p_gtpType ) : string
p_gtpType OptionGroupType The to unparse.
Результат string

UnparseOptionType() защищенный Метод

Translates the given OptionType into the string representation used in the XML.
protected UnparseOptionType ( OptionType p_otpType ) : string
p_otpType OptionType The to unparse.
Результат string

UnparsePluginState() защищенный Метод

Translates the given PluginState into the string representation used in the XML.
protected UnparsePluginState ( PluginState p_pstState ) : string
p_pstState PluginState The to unparse.
Результат string

UnparseRequiredInstallFiles() защищенный абстрактный Метод

Unparses XmlScript.RequiredInstallFiles.
protected abstract UnparseRequiredInstallFiles ( ) : System.Xml.Linq.XElement
Результат System.Xml.Linq.XElement

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

A simple constructor that initializes the object with the given values.
public Unparser ( XmlScript p_xscScript ) : System
p_xscScript XmlScript The script to unparse.
Результат System