Home
last modified time | relevance | path

Searched refs:ValueXml (Results 1 – 25 of 25) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Configuration.ConfigurationManager/src/System/Configuration/
H A DSettingValueElement.cs30 public XmlNode ValueXml property in System.Configuration.SettingValueElement
45 ValueXml = _document.ReadNode(reader); in DeserializeElement()
51 return (u != null && Equals(u.ValueXml, ValueXml)); in Equals()
56 return ValueXml.GetHashCode(); in GetHashCode()
71 if (ValueXml != null) in SerializeToXmlElement()
75 ValueXml?.WriteTo(writer); in SerializeToXmlElement()
86 ValueXml = ((SettingValueElement)parentElement).ValueXml; in Reset()
93 ValueXml = ((SettingValueElement)sourceElement).ValueXml; in Unmerge()
H A DClientSettingsStore.cs103 … settings[setting.Name] = new StoredSetting(setting.SerializeAs, setting.Value.ValueXml); in ReadSettings()
143 … settings[setting.Name] = new StoredSetting(setting.SerializeAs, setting.Value.ValueXml); in ReadSettingsFromFile()
199 se.Value.ValueXml = ss.Value; in WriteSettings()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/sys/system/configuration/sections/
H A DClientSettingsSection.cs181 public XmlNode ValueXml { property in System.Configuration.SettingValueElement
193 ValueXml = doc.ReadNode(reader); in DeserializeElement()
198 return (u != null && Object.Equals(u.ValueXml, ValueXml)); in Equals()
202 return ValueXml.GetHashCode(); in GetHashCode()
214 if (ValueXml != null) { in SerializeToXmlElement()
216 ValueXml.WriteTo(writer); in SerializeToXmlElement()
226 ValueXml = ((SettingValueElement) parentElement).ValueXml; in Reset()
232 ValueXml = ((SettingValueElement) sourceElement).ValueXml; in Unmerge()
/dports/net-mgmt/sblim-wbemcli/sblim-wbemcli-1.6.3/
H A DCimXml.h171 class ValueXml; variable
407 ~ValueXml();
408 ValueXml(XmlBuffer&);
409 ValueXml(const char*);
410 ValueXml(const ValueXml& src); // copy constructor
411 ValueXml& operator= (const ValueXml&); // assignment
412 ValueXml * clone() { return new ValueXml(*this);} in clone()
422 ValueXml valRef;
519 Option<ValueXml> value;
546 Option<ValueXml> value;
[all …]
H A DCimXml.cpp1127 rv=new ValueXml(xb); in IReturnvalueXml()
1283 rv=new ValueXml(xb); in ReturnvalueXml()
1733 val = new ValueXml(xb); in ParamvalueXml()
1845 value=Option<ValueXml>(ValueXml(xb)); in init()
1882 value=Option<ValueXml>(ValueXml(p)); in init()
2718 XmlElement ValueXml::elm(0);
2722 ValueXml::ValueXml(XmlBuffer &xb) : subVal(0), valArray(0) in ValueXml() function in ValueXml
2786 ValueXml::ValueXml(const char *s) : subVal(0), valArray(0) in ValueXml() function in ValueXml
2798 ValueXml::ValueXml(const ValueXml& src) : RetValXml(*(RetValXml *)&src), subVal(0), valArray(0) in ValueXml() function in ValueXml
2806 ValueXml& ValueXml::operator= (const ValueXml& src) in operator =()
[all …]
H A DCimXml.i148 extern class ValueXml;
201 ValueXml* __getitem__(char *key) { in __getitem__()
421 class ValueXml : public RetValXml {};
459 Option<ValueXml> value;
673 ValueXml *getProperty(URL&,char*);
H A DCimXml.py1481 class ValueXml(RetValXml): class
1484 __setattr__ = lambda self, name, value: _swig_setattr(self, ValueXml, name, value)
1487 __getattr__ = lambda self, name: _swig_getattr(self, ValueXml, name)
1496 class ValueXmlPtr(ValueXml):
1498 _swig_setattr(self, ValueXml, 'this', this)
1499 if not hasattr(self,"thisown"): _swig_setattr(self, ValueXml, 'thisown', 0)
1500 _swig_setattr(self, ValueXml,self.__class__,ValueXml)
H A Dmain.cpp131 ValueXml *va=0; in main()
H A DCimXml_wrap.cpp1079 ValueXml *ArrayXmllPropertyXml_g___getitem_______SWIG_1(ArrayXml<PropertyXml > *self,char *key){ in ArrayXmllPropertyXml_g___getitem_______SWIG_1()
5585 ValueXml *result; in _wrap_PropertyArray___getitem____SWIG_1()
5592 result = (ValueXml *)ArrayXmllPropertyXml_g___getitem_______SWIG_1(arg1,arg2); in _wrap_PropertyArray___getitem____SWIG_1()
18604 ValueXml *arg1 = (ValueXml *) 0 ; in _wrap_delete_ValueXml()
19453 Option<ValueXml > *arg2 = (Option<ValueXml > *) 0 ; in _wrap_PropertyXml_value_set()
19472 Option<ValueXml > *result; in _wrap_PropertyXml_value_get()
19477 result = (Option<ValueXml > *)& ((arg1)->value); in _wrap_PropertyXml_value_get()
23853 ValueXml *result; in _wrap_Cimom_getProperty()
23865 result = (ValueXml *)(arg1)->getProperty(*arg2,arg3); in _wrap_Cimom_getProperty()
24834 return (void *)((RetValXml *) ((ValueXml *) x)); in _p_ValueXmlTo_p_RetValXml()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Configuration/
H A DCustomizableFileSettingsProvider.cs645 if (element.Value.ValueXml == null) in SaveProperties()
646 element.Value.ValueXml = new XmlDocument ().CreateElement ("value"); in SaveProperties()
649 element.Value.ValueXml.InnerXml = StripXmlHeader (value.SerializedValue as string); in SaveProperties()
652 element.Value.ValueXml.InnerText = value.SerializedValue as string; in SaveProperties()
655 …element.Value.ValueXml.InnerText = value.SerializedValue != null ? Convert.ToBase64String (value.S… in SaveProperties()
689 if (element.Value.ValueXml != null) { in LoadPropertyValue()
692 value.SerializedValue = element.Value.ValueXml.InnerXml; in LoadPropertyValue()
695 value.SerializedValue = element.Value.ValueXml.InnerText.Trim (); in LoadPropertyValue()
698 value.SerializedValue = Convert.FromBase64String (element.Value.ValueXml.InnerText); in LoadPropertyValue()
H A DSettingValueElement.cs66 public XmlNode ValueXml { property in System.Configuration.SettingValueElement
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Configuration/
H A DSettingElementTest.cs46 Assert.IsNull (el.Value.ValueXml, "#2"); in Initial()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/sys/system/configuration/
H A DClientSettingsStore.cs102 … settings[setting.Name] = new StoredSetting(setting.SerializeAs, setting.Value.ValueXml); in ReadSettings()
136 … settings[setting.Name] = new StoredSetting(setting.SerializeAs, setting.Value.ValueXml); in ReadSettingsFromFile()
183 se.Value.ValueXml = ss.Value; in WriteSettings()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Configuration.ConfigurationManager/ref/
H A DSystem.Configuration.cs447 public System.Xml.XmlNode ValueXml { get { throw null; } set { } } property in System.Configuration.SettingValueElement
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.0/
H A DSystem.cs5963 public System.Xml.XmlNode ValueXml { get { throw null; } set { } } property in System.Configuration.SettingValueElement
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v2.0/
H A DSystem.cs5686 public System.Xml.XmlNode ValueXml { get { throw null; } set { } } property in System.Configuration.SettingValueElement
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.2/
H A DSystem.cs5904 public System.Xml.XmlNode ValueXml { get { throw null; } set { } } property in System.Configuration.SettingValueElement
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.1/
H A DSystem.cs5925 public System.Xml.XmlNode ValueXml { get { throw null; } set { } } property in System.Configuration.SettingValueElement
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6/
H A DSystem.cs5925 public System.Xml.XmlNode ValueXml { get { throw null; } set { } } property in System.Configuration.SettingValueElement
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.1/
H A DSystem.cs5904 public System.Xml.XmlNode ValueXml { get { throw null; } set { } } property in System.Configuration.SettingValueElement
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5/
H A DSystem.cs5904 public System.Xml.XmlNode ValueXml { get { throw null; } set { } } property in System.Configuration.SettingValueElement
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/net_4_x/
H A DSystem.cs5909 public System.Xml.XmlNode ValueXml { get { throw null; } set { } } property in System.Configuration.SettingValueElement
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.7.1/
H A DSystem.cs6201 public System.Xml.XmlNode ValueXml { get { throw null; } set { } } property in System.Configuration.SettingValueElement
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.2/
H A DSystem.cs5925 public System.Xml.XmlNode ValueXml { get { throw null; } set { } } property in System.Configuration.SettingValueElement
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.7/
H A DSystem.cs6192 public System.Xml.XmlNode ValueXml { get { throw null; } set { } } property in System.Configuration.SettingValueElement