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

github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release-notes/7.0/preview/api-diff/rc1/Microsoft.NETCore.App/7.0-rc1_System.Data.SqlTypes.md')
-rw-r--r--release-notes/7.0/preview/api-diff/rc1/Microsoft.NETCore.App/7.0-rc1_System.Data.SqlTypes.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/release-notes/7.0/preview/api-diff/rc1/Microsoft.NETCore.App/7.0-rc1_System.Data.SqlTypes.md b/release-notes/7.0/preview/api-diff/rc1/Microsoft.NETCore.App/7.0-rc1_System.Data.SqlTypes.md
new file mode 100644
index 00000000..73507022
--- /dev/null
+++ b/release-notes/7.0/preview/api-diff/rc1/Microsoft.NETCore.App/7.0-rc1_System.Data.SqlTypes.md
@@ -0,0 +1,21 @@
+# System.Data.SqlTypes
+
+``` diff
+ namespace System.Data.SqlTypes {
+ [XmlSchemaProviderAttribute("GetXsdType")]
+ public struct SqlBinary : IComparable, IEquatable<SqlBinary>, INullable, IXmlSerializable {
++ public static SqlBinary WrapBytes(byte[] bytes);
+ }
+ [XmlSchemaProviderAttribute("GetXsdType")]
+ public struct SqlDecimal : IComparable, IEquatable<SqlDecimal>, INullable, IXmlSerializable {
++ [CLSCompliantAttribute(false)]
++ public int WriteTdsValue(Span<uint> destination);
+ }
+ [XmlSchemaProviderAttribute("GetXsdType")]
+ public struct SqlMoney : IComparable, IEquatable<SqlMoney>, INullable, IXmlSerializable {
++ public static SqlMoney FromTdsValue(long value);
++ public long GetTdsValue();
+ }
+ }
+```
+