Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/referencesource/System.Data/System/Data/XMLSchema.cs')
-rw-r--r--mcs/class/referencesource/System.Data/System/Data/XMLSchema.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/mcs/class/referencesource/System.Data/System/Data/XMLSchema.cs b/mcs/class/referencesource/System.Data/System/Data/XMLSchema.cs
index de839b472be..f23239bdfdf 100644
--- a/mcs/class/referencesource/System.Data/System/Data/XMLSchema.cs
+++ b/mcs/class/referencesource/System.Data/System/Data/XMLSchema.cs
@@ -2,8 +2,8 @@
// <copyright file="XMLSchema.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
-// <owner current="true" primary="true">Microsoft</owner>
-// <owner current="true" primary="false">Microsoft</owner>
+// <owner current="true" primary="true">[....]</owner>
+// <owner current="true" primary="false">[....]</owner>
//------------------------------------------------------------------------------
namespace System.Data {
@@ -1346,7 +1346,7 @@ namespace System.Data {
table = _ds.Tables.GetTable(XmlConvert.DecodeName(typeName), _TableUri);
// TOD: Do not do this fix
// if (table == null && node.RefName.IsEmpty && !IsTopLevelElement(node) && _TableUri != null && _TableUri.Length > 0) {
-// _TableUri = null; // it means form="qualified", so child element inherits namespace. Microsoft
+// _TableUri = null; // it means form="qualified", so child element inherits namespace. [....]
// }
if (!FromInference || (FromInference && table == null))
@@ -1388,7 +1388,7 @@ namespace System.Data {
table.Locale = new CultureInfo(value);
}
else {
- // everett
+ // everett bug behavior before <... msdata:Locale=""/> inherit from DataSet
table.Locale = CultureInfo.InvariantCulture;
}
}
@@ -1574,7 +1574,7 @@ namespace System.Data {
new NameType("byte" , typeof(SByte) ), /* XSD Apr */
new NameType("date" , typeof(DateTime)), /* XSD Apr */
new NameType("dateTime" , typeof(DateTime)), /* XSD Apr */
- new NameType("decimal" , typeof(decimal) ), /* XSD 2001 Microsoft */
+ new NameType("decimal" , typeof(decimal) ), /* XSD 2001 [....] */
new NameType("double" , typeof(double) ), /* XSD Apr */
new NameType("duration" , typeof(TimeSpan)), /* XSD Apr */
new NameType("float" , typeof(Single) ), /* XSD Apr */
@@ -2026,7 +2026,7 @@ namespace System.Data {
}
- // XDR Microsoft change
+ // XDR [....] change
string strDefault = (attrib.Use == XmlSchemaUse.Required) ? GetMsdataAttribute(attr, Keywords.MSD_DEFAULTVALUE) : attr.DefaultValue;
if ((attr.Use == XmlSchemaUse.Optional) && (strDefault == null ))
strDefault = attr.FixedValue;
@@ -2227,7 +2227,7 @@ namespace System.Data {
_ds.Locale = new CultureInfo(value);
}
else {
- // everett
+ // everett bug behavior before <... msdata:Locale=""/> becoming CultureInfo(0x409)
_ds.Locale = CultureInfo.InvariantCulture;
}
}