Imported Upstream version 5.10.0.69
Former-commit-id: fc39669a0b707dd3c063977486506b6793da2890
This commit is contained in:
parent
d8f8abd549
commit
e2950ec768
@ -1 +1 @@
|
||||
13c4421b7a5ecebbb847a299f306f96912b3ce36
|
||||
5b34281abf0849c98261c0cfdd0d23e326e8bcd9
|
@ -1 +1 @@
|
||||
5deb9ecc7ea035f4dbe596933c91280f63a5abd8
|
||||
f6abc4fd387f6974da69a91114d1ccdd791df5f0
|
@ -1 +1 @@
|
||||
16c694a0175ec7eb00563855963fdf1d5a0b987c
|
||||
b803f86ef29cfff6559c08f5186f8bdf441b8d4b
|
@ -3,6 +3,7 @@
|
||||
// See the LICENSE file in the project root for more information.
|
||||
|
||||
[assembly:System.Reflection.AssemblyVersionAttribute("2.0.5.0")]
|
||||
[assembly:System.CLSCompliantAttribute(true)]
|
||||
[assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(2))]
|
||||
[assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
|
||||
[assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
|
||||
@ -39,6 +40,8 @@ namespace System.IO.Compression
|
||||
internal ZipArchiveEntry() { }
|
||||
public System.IO.Compression.ZipArchive Archive { get { throw null; } }
|
||||
public long CompressedLength { get { throw null; } }
|
||||
[System.CLSCompliantAttribute(false)]
|
||||
public uint Crc32 { get { throw null; } }
|
||||
public int ExternalAttributes { get { throw null; } set { } }
|
||||
public string FullName { get { throw null; } }
|
||||
public System.DateTimeOffset LastWriteTime { get { throw null; } set { } }
|
||||
|
@ -22,6 +22,7 @@
|
||||
[assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
|
||||
namespace System.Numerics
|
||||
{
|
||||
[System.Runtime.CompilerServices.IsReadOnlyAttribute]
|
||||
[System.SerializableAttribute]
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct BigInteger : System.IComparable, System.IComparable<System.Numerics.BigInteger>, System.IEquatable<System.Numerics.BigInteger>, System.IFormattable
|
||||
@ -32,7 +33,7 @@ namespace System.Numerics
|
||||
public BigInteger(double value) { throw null;}
|
||||
public BigInteger(int value) { throw null;}
|
||||
public BigInteger(long value) { throw null;}
|
||||
public BigInteger(System.ReadOnlySpan<byte> value) { throw null;}
|
||||
public BigInteger(System.ReadOnlySpan<byte> value, bool isUnsigned=false, bool isBigEndian=false) { throw null;}
|
||||
public BigInteger(float value) { throw null;}
|
||||
[System.CLSCompliantAttribute(false)]
|
||||
public BigInteger(uint value) { throw null;}
|
||||
@ -61,7 +62,7 @@ namespace System.Numerics
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
[System.CLSCompliantAttribute(false)]
|
||||
public bool Equals(ulong other) { throw null; }
|
||||
public int GetByteCount() { throw null; }
|
||||
public int GetByteCount(bool isUnsigned=false) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static System.Numerics.BigInteger GreatestCommonDivisor(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
|
||||
public static double Log(System.Numerics.BigInteger value) { throw null; }
|
||||
@ -168,14 +169,17 @@ namespace System.Numerics
|
||||
public static System.Numerics.BigInteger Remainder(System.Numerics.BigInteger dividend, System.Numerics.BigInteger divisor) { throw null; }
|
||||
public static System.Numerics.BigInteger Subtract(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
|
||||
public byte[] ToByteArray() { throw null; }
|
||||
public byte[] ToByteArray(bool isUnsigned=false, bool isBigEndian=false) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public string ToString(System.IFormatProvider provider) { throw null; }
|
||||
public string ToString(string format) { throw null; }
|
||||
public string ToString(string format, System.IFormatProvider provider) { throw null; }
|
||||
public static bool TryParse(System.ReadOnlySpan<char> value, out System.Numerics.BigInteger result, System.Globalization.NumberStyles style=(System.Globalization.NumberStyles)(7), System.IFormatProvider provider=null) { result = default(System.Numerics.BigInteger); throw null; }
|
||||
public bool TryFormat(System.Span<char> destination, out int charsWritten, System.ReadOnlySpan<char> format=default(System.ReadOnlySpan<char>), System.IFormatProvider provider=null) { charsWritten = default(int); throw null; }
|
||||
public static bool TryParse(System.ReadOnlySpan<char> value, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Numerics.BigInteger result) { result = default(System.Numerics.BigInteger); throw null; }
|
||||
public static bool TryParse(System.ReadOnlySpan<char> value, out System.Numerics.BigInteger result) { result = default(System.Numerics.BigInteger); throw null; }
|
||||
public static bool TryParse(string value, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Numerics.BigInteger result) { result = default(System.Numerics.BigInteger); throw null; }
|
||||
public static bool TryParse(string value, out System.Numerics.BigInteger result) { result = default(System.Numerics.BigInteger); throw null; }
|
||||
public bool TryWriteBytes(System.Span<byte> destination, out int bytesWritten) { bytesWritten = default(int); throw null; }
|
||||
public bool TryWriteBytes(System.Span<byte> destination, out int bytesWritten, bool isUnsigned=false, bool isBigEndian=false) { bytesWritten = default(int); throw null; }
|
||||
}
|
||||
[System.SerializableAttribute]
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
|
@ -1 +1 @@
|
||||
b197c51abc3c082dbda5c8adc28f62bae9c30032
|
||||
6ee3ca8968f7c2c5a13fde0d89329b4efbbd7f4f
|
@ -1 +1 @@
|
||||
f3174d13fff775c60031f68c928469a31d188436
|
||||
e2fe033997a386b136170ffee03d043df47c88df
|
@ -1 +1 @@
|
||||
16c694a0175ec7eb00563855963fdf1d5a0b987c
|
||||
b803f86ef29cfff6559c08f5186f8bdf441b8d4b
|
@ -3,6 +3,7 @@
|
||||
// See the LICENSE file in the project root for more information.
|
||||
|
||||
[assembly:System.Reflection.AssemblyVersionAttribute("2.0.5.0")]
|
||||
[assembly:System.CLSCompliantAttribute(true)]
|
||||
[assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(2))]
|
||||
[assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
|
||||
[assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
|
||||
@ -39,6 +40,8 @@ namespace System.IO.Compression
|
||||
internal ZipArchiveEntry() { }
|
||||
public System.IO.Compression.ZipArchive Archive { get { throw null; } }
|
||||
public long CompressedLength { get { throw null; } }
|
||||
[System.CLSCompliantAttribute(false)]
|
||||
public uint Crc32 { get { throw null; } }
|
||||
public int ExternalAttributes { get { throw null; } set { } }
|
||||
public string FullName { get { throw null; } }
|
||||
public System.DateTimeOffset LastWriteTime { get { throw null; } set { } }
|
||||
|
@ -22,6 +22,7 @@
|
||||
[assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
|
||||
namespace System.Numerics
|
||||
{
|
||||
[System.Runtime.CompilerServices.IsReadOnlyAttribute]
|
||||
[System.SerializableAttribute]
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct BigInteger : System.IComparable, System.IComparable<System.Numerics.BigInteger>, System.IEquatable<System.Numerics.BigInteger>, System.IFormattable
|
||||
@ -32,7 +33,7 @@ namespace System.Numerics
|
||||
public BigInteger(double value) { throw null;}
|
||||
public BigInteger(int value) { throw null;}
|
||||
public BigInteger(long value) { throw null;}
|
||||
public BigInteger(System.ReadOnlySpan<byte> value) { throw null;}
|
||||
public BigInteger(System.ReadOnlySpan<byte> value, bool isUnsigned=false, bool isBigEndian=false) { throw null;}
|
||||
public BigInteger(float value) { throw null;}
|
||||
[System.CLSCompliantAttribute(false)]
|
||||
public BigInteger(uint value) { throw null;}
|
||||
@ -61,7 +62,7 @@ namespace System.Numerics
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
[System.CLSCompliantAttribute(false)]
|
||||
public bool Equals(ulong other) { throw null; }
|
||||
public int GetByteCount() { throw null; }
|
||||
public int GetByteCount(bool isUnsigned=false) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static System.Numerics.BigInteger GreatestCommonDivisor(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
|
||||
public static double Log(System.Numerics.BigInteger value) { throw null; }
|
||||
@ -168,14 +169,17 @@ namespace System.Numerics
|
||||
public static System.Numerics.BigInteger Remainder(System.Numerics.BigInteger dividend, System.Numerics.BigInteger divisor) { throw null; }
|
||||
public static System.Numerics.BigInteger Subtract(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
|
||||
public byte[] ToByteArray() { throw null; }
|
||||
public byte[] ToByteArray(bool isUnsigned=false, bool isBigEndian=false) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public string ToString(System.IFormatProvider provider) { throw null; }
|
||||
public string ToString(string format) { throw null; }
|
||||
public string ToString(string format, System.IFormatProvider provider) { throw null; }
|
||||
public static bool TryParse(System.ReadOnlySpan<char> value, out System.Numerics.BigInteger result, System.Globalization.NumberStyles style=(System.Globalization.NumberStyles)(7), System.IFormatProvider provider=null) { result = default(System.Numerics.BigInteger); throw null; }
|
||||
public bool TryFormat(System.Span<char> destination, out int charsWritten, System.ReadOnlySpan<char> format=default(System.ReadOnlySpan<char>), System.IFormatProvider provider=null) { charsWritten = default(int); throw null; }
|
||||
public static bool TryParse(System.ReadOnlySpan<char> value, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Numerics.BigInteger result) { result = default(System.Numerics.BigInteger); throw null; }
|
||||
public static bool TryParse(System.ReadOnlySpan<char> value, out System.Numerics.BigInteger result) { result = default(System.Numerics.BigInteger); throw null; }
|
||||
public static bool TryParse(string value, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Numerics.BigInteger result) { result = default(System.Numerics.BigInteger); throw null; }
|
||||
public static bool TryParse(string value, out System.Numerics.BigInteger result) { result = default(System.Numerics.BigInteger); throw null; }
|
||||
public bool TryWriteBytes(System.Span<byte> destination, out int bytesWritten) { bytesWritten = default(int); throw null; }
|
||||
public bool TryWriteBytes(System.Span<byte> destination, out int bytesWritten, bool isUnsigned=false, bool isBigEndian=false) { bytesWritten = default(int); throw null; }
|
||||
}
|
||||
[System.SerializableAttribute]
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
|
@ -1 +1 @@
|
||||
4752cd1a3db92b01de458920358a6c4513933104
|
||||
0aabd5e9b1f4b5f354b3f274cad6983bfa8434e8
|
@ -1 +1 @@
|
||||
4106d7c02b3c5d2831e4f06e674c5197fba1d6d4
|
||||
caea80eb9a8aeae8d816300ba49e3e58a189a287
|
@ -1 +1 @@
|
||||
c52ad21527ca17216e4412a711bd166d404dc32a
|
||||
1f8d4c968568f6efbbb436418f27bf2ed01bc649
|
@ -1 +1 @@
|
||||
1daaa964a2b17770072422022f356fc5dd99ef2a
|
||||
234aaf94d293014332715fe43d020e87b2c24a7c
|
@ -3,6 +3,7 @@
|
||||
// See the LICENSE file in the project root for more information.
|
||||
|
||||
[assembly:System.Reflection.AssemblyVersionAttribute("4.0.0.0")]
|
||||
[assembly:System.CLSCompliantAttribute(true)]
|
||||
[assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(2))]
|
||||
[assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
|
||||
[assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
|
||||
@ -39,6 +40,8 @@ namespace System.IO.Compression
|
||||
internal ZipArchiveEntry() { }
|
||||
public System.IO.Compression.ZipArchive Archive { get { throw null; } }
|
||||
public long CompressedLength { get { throw null; } }
|
||||
[System.CLSCompliantAttribute(false)]
|
||||
public uint Crc32 { get { throw null; } }
|
||||
public int ExternalAttributes { get { throw null; } set { } }
|
||||
public string FullName { get { throw null; } }
|
||||
public System.DateTimeOffset LastWriteTime { get { throw null; } set { } }
|
||||
|
@ -22,6 +22,7 @@
|
||||
[assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
|
||||
namespace System.Numerics
|
||||
{
|
||||
[System.Runtime.CompilerServices.IsReadOnlyAttribute]
|
||||
[System.SerializableAttribute]
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct BigInteger : System.IComparable, System.IComparable<System.Numerics.BigInteger>, System.IEquatable<System.Numerics.BigInteger>, System.IFormattable
|
||||
@ -32,7 +33,7 @@ namespace System.Numerics
|
||||
public BigInteger(double value) { throw null;}
|
||||
public BigInteger(int value) { throw null;}
|
||||
public BigInteger(long value) { throw null;}
|
||||
public BigInteger(System.ReadOnlySpan<byte> value) { throw null;}
|
||||
public BigInteger(System.ReadOnlySpan<byte> value, bool isUnsigned=false, bool isBigEndian=false) { throw null;}
|
||||
public BigInteger(float value) { throw null;}
|
||||
[System.CLSCompliantAttribute(false)]
|
||||
public BigInteger(uint value) { throw null;}
|
||||
@ -61,7 +62,7 @@ namespace System.Numerics
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
[System.CLSCompliantAttribute(false)]
|
||||
public bool Equals(ulong other) { throw null; }
|
||||
public int GetByteCount() { throw null; }
|
||||
public int GetByteCount(bool isUnsigned=false) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static System.Numerics.BigInteger GreatestCommonDivisor(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
|
||||
public static double Log(System.Numerics.BigInteger value) { throw null; }
|
||||
@ -168,14 +169,17 @@ namespace System.Numerics
|
||||
public static System.Numerics.BigInteger Remainder(System.Numerics.BigInteger dividend, System.Numerics.BigInteger divisor) { throw null; }
|
||||
public static System.Numerics.BigInteger Subtract(System.Numerics.BigInteger left, System.Numerics.BigInteger right) { throw null; }
|
||||
public byte[] ToByteArray() { throw null; }
|
||||
public byte[] ToByteArray(bool isUnsigned=false, bool isBigEndian=false) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public string ToString(System.IFormatProvider provider) { throw null; }
|
||||
public string ToString(string format) { throw null; }
|
||||
public string ToString(string format, System.IFormatProvider provider) { throw null; }
|
||||
public static bool TryParse(System.ReadOnlySpan<char> value, out System.Numerics.BigInteger result, System.Globalization.NumberStyles style=(System.Globalization.NumberStyles)(7), System.IFormatProvider provider=null) { result = default(System.Numerics.BigInteger); throw null; }
|
||||
public bool TryFormat(System.Span<char> destination, out int charsWritten, System.ReadOnlySpan<char> format=default(System.ReadOnlySpan<char>), System.IFormatProvider provider=null) { charsWritten = default(int); throw null; }
|
||||
public static bool TryParse(System.ReadOnlySpan<char> value, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Numerics.BigInteger result) { result = default(System.Numerics.BigInteger); throw null; }
|
||||
public static bool TryParse(System.ReadOnlySpan<char> value, out System.Numerics.BigInteger result) { result = default(System.Numerics.BigInteger); throw null; }
|
||||
public static bool TryParse(string value, System.Globalization.NumberStyles style, System.IFormatProvider provider, out System.Numerics.BigInteger result) { result = default(System.Numerics.BigInteger); throw null; }
|
||||
public static bool TryParse(string value, out System.Numerics.BigInteger result) { result = default(System.Numerics.BigInteger); throw null; }
|
||||
public bool TryWriteBytes(System.Span<byte> destination, out int bytesWritten) { bytesWritten = default(int); throw null; }
|
||||
public bool TryWriteBytes(System.Span<byte> destination, out int bytesWritten, bool isUnsigned=false, bool isBigEndian=false) { bytesWritten = default(int); throw null; }
|
||||
}
|
||||
[System.SerializableAttribute]
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
|
@ -474,6 +474,14 @@ namespace System.Security.Cryptography.Xml
|
||||
public override System.Xml.XmlElement GetXml() { throw null; }
|
||||
public override void LoadXml(System.Xml.XmlElement value) { }
|
||||
}
|
||||
[System.SerializableAttribute]
|
||||
public partial class CryptoSignedXmlRecursionException : System.Xml.XmlException
|
||||
{
|
||||
public CryptoSignedXmlRecursionException() { }
|
||||
protected CryptoSignedXmlRecursionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
|
||||
public CryptoSignedXmlRecursionException(string message) { }
|
||||
public CryptoSignedXmlRecursionException(string message, System.Exception inner) { }
|
||||
}
|
||||
public partial class DataObject
|
||||
{
|
||||
public DataObject() { }
|
||||
|
@ -1 +1 @@
|
||||
59368e66d91c68d9e8972da9211f67ce3484cfa8
|
||||
f41727750b395e4019243785bcefced55377f2f3
|
@ -1 +1 @@
|
||||
44f15a763ed2458ee79e0b610407d136b27f1825
|
||||
9a68bbd21ee9196ff71f50bc108c1324eae4f4f9
|
2
external/corefx/BuildToolsVersion.txt
vendored
2
external/corefx/BuildToolsVersion.txt
vendored
@ -1 +1 @@
|
||||
2.0.0-prerelease-02118-01
|
||||
2.1.0-prerelease-02419-02
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user