/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Configuration/System.Configuration/ |
H A D | ConfigurationSection.cs | 85 if (RawXml == null) in GetRuntimeObject() 91 new StringReader (RawXml), in GetRuntimeObject() 105 RawXml = File.ReadAllText (path); in GetRuntimeObject() 106 SectionInformation.SetRawXml (RawXml); in GetRuntimeObject() 114 doc.LoadXml (RawXml); in GetRuntimeObject() 181 SectionInformation.SetRawXml (RawXml); in DoDeserializeSection() 214 RawXml = null; in DeserializeConfigSource() 219 RawXml = File.ReadAllText (path); in DeserializeConfigSource() 220 SectionInformation.SetRawXml (RawXml); in DeserializeConfigSource() 221 DeserializeElement (new ConfigXmlTextReader (new StringReader (RawXml), path), false); in DeserializeConfigSource()
|
H A D | DefaultSection.cs | 51 if (RawXml == null) in DeserializeSection() 52 RawXml = xmlReader.ReadOuterXml (); in DeserializeSection()
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Configuration.ConfigurationManager/src/System/Configuration/ |
H A D | ConfigXmlReader.cs | 28 RawXml = rawXml; in ConfigXmlReader() 37 internal string RawXml { get; } property in System.Configuration.ConfigXmlReader 53 return new ConfigXmlReader(RawXml, _filename, _lineOffset, _lineNumberIsConstant); in Clone()
|
H A D | SectionXmlInfo.cs | 26 RawXml = rawXml; in SectionXmlInfo() 54 internal string RawXml { get; set; } property in System.Configuration.SectionXmlInfo
|
H A D | SectionRecord.cs | 254 … foreach (SectionInput locationInput in LocationInputs) locationInput.SectionXmlInfo.RawXml = null; in ClearRawXml() 259 indirectLocationInput.SectionXmlInfo.RawXml = null; in ClearRawXml() 262 if (HasFileInput) FileInput.SectionXmlInfo.RawXml = null; in ClearRawXml()
|
H A D | SectionInformation.cs | 389 internal string RawXml { get; set; } property in System.Configuration.SectionInformation 665 return RawXml ?? _configRecord?.GetRawXml(ConfigKey); in GetRawXml() 673 else RawXml = string.IsNullOrEmpty(rawXml) ? null : rawXml; in SetRawXml()
|
H A D | MgmtConfigurationRecord.cs | 405 configSection.SectionInformation.RawXml = null; in RevertToParent() 440 return reader.RawXml; in GetRawXml() 464 configSection.SectionInformation.RawXml = xmlElement; in SetRawXml() 483 configSection.SectionInformation.RawXml = null; in SetRawXml() 727 string rawXml = configSection.SectionInformation.RawXml; in AddConfigurationSection() 730 configSection.SectionInformation.RawXml = null; in AddConfigurationSection() 1603 (configSection.SectionInformation.RawXml != null); in GetConfigDefinitionUpdates() 1622 (configSection.SectionInformation.RawXml == null) || in GetConfigDefinitionUpdates() 1632 else updatedXml = configSection.SectionInformation.RawXml; in GetConfigDefinitionUpdates() 1858 configSection.SectionInformation.RawXml = null; in UpdateRecords() [all …]
|
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Configuration/System/Configuration/ |
H A D | SectionRecord.cs | 299 locationInput.SectionXmlInfo.RawXml = null; in ClearRawXml() 305 indirectLocationInput.SectionXmlInfo.RawXml = null; in ClearRawXml() 310 FileInput.SectionXmlInfo.RawXml = null; in ClearRawXml()
|
H A D | SectionInformation.cs | 787 if (RawXml != null) { in GetRawXml() 788 return RawXml; in GetRawXml() 805 RawXml = (String.IsNullOrEmpty(rawXml)) ? null : rawXml; in SetRawXml() 809 internal string RawXml { property in System.Configuration.SectionInformation
|
H A D | ConfigXmlReader.cs | 71 internal string RawXml { property in System.Configuration.ConfigXmlReader
|
H A D | SectionXmlInfo.cs | 111 internal string RawXml { property in System.Configuration.SectionXmlInfo
|
H A D | MgmtConfigurationRecord.cs | 488 configSection.SectionInformation.RawXml = null; in RevertToParent() 522 return reader.RawXml; in GetRawXml() 547 configSection.SectionInformation.RawXml = xmlElement; in SetRawXml() 563 configSection.SectionInformation.RawXml = null; in SetRawXml() 835 string rawXml = configSection.SectionInformation.RawXml; in AddConfigurationSection() 837 configSection.SectionInformation.RawXml = null; in AddConfigurationSection() 1734 … bool sectionContentModified = (isModified || configSection.SectionInformation.RawXml != null); in GetConfigDefinitionUpdates() 1750 configSection.SectionInformation.RawXml == null || in GetConfigDefinitionUpdates() 1768 updatedXml = configSection.SectionInformation.RawXml; in GetConfigDefinitionUpdates() 1979 configSection.SectionInformation.RawXml = null; in UpdateRecords() [all …]
|
/dports/devel/msbuild/msbuild-0.06/src/Build.UnitTests/ |
H A D | EscapingInProjects_Tests.cs | 210 Helpers.CompareProjectXml(projectNewExpectedContents, project.Xml.RawXml); in AddNewItemWithSemicolon() 255 Helpers.CompareProjectXml(projectNewExpectedContents, project.Xml.RawXml); in AddNewItemWithPropertyContainingSemicolon() 304 Helpers.CompareProjectXml(projectNewExpectedContents, project.Xml.RawXml); in ModifyItemIncludeSemicolon() 360 Helpers.CompareProjectXml(projectNewExpectedContents, project.Xml.RawXml); in ModifyItemIncludeEscapedSemicolon() 422 Helpers.CompareProjectXml(projectNewExpectedContents, project.Xml.RawXml); in ModifyItemAddPropertyContainingSemicolon() 463 Helpers.CompareProjectXml(projectNewExpectedContents, project.Xml.RawXml); in AddNewItemThatMatchesWildcard1() 505 Helpers.CompareProjectXml(projectNewExpectedContents, project.Xml.RawXml); in AddNewItemThatMatchesWildcard2()
|
/dports/devel/msbuild/msbuild-0.06/src/Build.OM.UnitTests/Construction/ |
H A D | UsingTaskBodyElement_Tests.cs | 129 Assert.True(body.ContainingProject.RawXml.Contains("Evaluate")); in SetEvaluateAttributeToNull() 131 Assert.False(body.ContainingProject.RawXml.Contains("Evaluate")); in SetEvaluateAttributeToNull()
|
H A D | ProjectImportGroupElement_Tests.cs | 54 Helpers.CompareProjectXml(expectedContent, project.RawXml); in AddImportWhenNoImportGroupExists() 105 Helpers.CompareProjectXml(expectedContent, project.RawXml); in AddImportToLastImportGroupWithNoCondition() 144 Helpers.CompareProjectXml(expectedContent, project.RawXml); in AddImportOnlyConditionedImportGroupsExist()
|
H A D | ProjectRootElement_Tests.cs | 1632 VerifyAssertLineByLine(changedProjectContents1, projectElement.RawXml); in ReloadedStateIsResilientToChangesAndDiskRoundtrip() 1636 VerifyAssertLineByLine(changedProjectContents2, projectElement.RawXml); in ReloadedStateIsResilientToChangesAndDiskRoundtrip() 1642 VerifyAssertLineByLine(changedProjectContents2, projectElement2.RawXml); in ReloadedStateIsResilientToChangesAndDiskRoundtrip() 1892 var xml = projectElement.RawXml; in AssertReload() 1918 Assert.NotEqual(xml, projectElement.RawXml); in AssertReload() 1922 Assert.Equal(xml, projectElement.RawXml); in AssertReload() 1941 Assert.Equal(pre.RawXml, pre2.RawXml); in ValidateDeepCloneAndCopyFrom() 1946 Assert.Equal(pre.RawXml, pre3.RawXml); in ValidateDeepCloneAndCopyFrom()
|
H A D | ProjectUsingTaskElement_Tests.cs | 548 Assert.True(usingTask.ContainingProject.RawXml.Contains("TaskFactory")); in VerifyAttributesRemoved() 550 Assert.False(usingTask.ContainingProject.RawXml.Contains("TaskFactory")); in VerifyAttributesRemoved()
|
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Conversion.UnitTests/ |
H A D | ProjectFileConverter_Tests.cs | 70 Helpers.CompareProjectXml(targetProjectContents, project.RawXml); in ConvertAndCompare() 1173 Helpers.CompareProjectXml(whidbeyProjectContents, project.RawXml); 1350 Helpers.CompareProjectXml(whidbeyProjectContents, project.RawXml); 1550 Helpers.CompareProjectXml(whidbeyProjectContents, project.RawXml);
|
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/google.golang.org/appengine/internal/xmpp/ |
H A D | xmpp_service.pb.go | 274 RawXml *bool `protobuf:"varint,3,opt,name=raw_xml,def=0" json:"raw_xml,omitempty"` member 302 if m != nil && m.RawXml != nil { 303 return *m.RawXml
|
/dports/www/tusc/tusc-0.4.7/vendor/github.com/tus/tusd/vendor/google.golang.org/appengine/internal/xmpp/ |
H A D | xmpp_service.pb.go | 274 RawXml *bool `protobuf:"varint,3,opt,name=raw_xml,def=0" json:"raw_xml,omitempty"` member 302 if m != nil && m.RawXml != nil { 303 return *m.RawXml
|
/dports/net/google-cloud-sdk-app-engine-go/platform/google_appengine/goroot-1.9/src/appengine_internal/xmpp/ |
H A D | xmpp_service.sdk.pb.go | 284 …RawXml *bool `protobuf:"varint,3,opt,name=raw_xml,json=rawXml,def=0" json:"raw_xml,om… member 312 if m != nil && m.RawXml != nil { 313 return *m.RawXml
|
/dports/net/gscloud/gscloud-0.11.0/vendor/google.golang.org/appengine/internal/xmpp/ |
H A D | xmpp_service.pb.go | 379 …RawXml *bool `protobuf:"varint,3,opt,name=raw_xml,json=rawXml,def=0" json:"raw_xm… member 429 if m != nil && m.RawXml != nil { 430 return *m.RawXml
|
/dports/net/grpcui/grpcui-1.1.0/vendor/google.golang.org/appengine/internal/xmpp/ |
H A D | xmpp_service.pb.go | 379 …RawXml *bool `protobuf:"varint,3,opt,name=raw_xml,json=rawXml,def=0" json:"raw_xm… member 429 if m != nil && m.RawXml != nil { 430 return *m.RawXml
|
/dports/net/rclone/rclone-1.57.0/vendor/google.golang.org/appengine/internal/xmpp/ |
H A D | xmpp_service.pb.go | 379 …RawXml *bool `protobuf:"varint,3,opt,name=raw_xml,json=rawXml,def=0" json:"raw_xm… member 429 if m != nil && m.RawXml != nil { 430 return *m.RawXml
|
/dports/devel/git-town/git-town-7.6.0/vendor/google.golang.org/appengine/appengine-1.6.6/internal/xmpp/ |
H A D | xmpp_service.pb.go | 379 …RawXml *bool `protobuf:"varint,3,opt,name=raw_xml,json=rawXml,def=0" json:"raw_xm… member 429 if m != nil && m.RawXml != nil { 430 return *m.RawXml
|