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

github.com/mono/api-snapshot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormonojenkins <jo.shields+jenkins@xamarin.com>2018-11-08 14:11:51 +0300
committermonojenkins <jo.shields+jenkins@xamarin.com>2018-11-08 14:11:51 +0300
commitd1b5dbb7c925a4562137d3ba5bd608bfec2aed1a (patch)
tree895acdd1adaf7ee1c01ef2ce89a409ecfbd20245 /profiles/monotouch/System.cs
parentbbb7c9282702bd8f3e8b3e31827f431169835e01 (diff)
Apply changes from https://github.com/mono/mono/pull/11511 to API snapshot
Diffstat (limited to 'profiles/monotouch/System.cs')
-rw-r--r--profiles/monotouch/System.cs76
1 files changed, 2 insertions, 74 deletions
diff --git a/profiles/monotouch/System.cs b/profiles/monotouch/System.cs
index 56935db..65a2d26 100644
--- a/profiles/monotouch/System.cs
+++ b/profiles/monotouch/System.cs
@@ -27,6 +27,8 @@
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
[assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
[assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
+[assembly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Collections.Generic.Queue<>))]
+[assembly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Collections.Generic.Stack<>))]
namespace Microsoft.Win32.SafeHandles
{
[System.Security.SuppressUnmanagedCodeSecurityAttribute]
@@ -515,43 +517,6 @@ namespace System.Collections.Generic
}
}
[System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
- [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.QueueDebugView<T>")]
- [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
- [System.SerializableAttribute]
- public partial class Queue<T> : System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.ICollection, System.Collections.IEnumerable
- {
- public Queue() { }
- public Queue(System.Collections.Generic.IEnumerable<T> collection) { }
- public Queue(int capacity) { }
- public int Count { get { throw null; } }
- bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
- object System.Collections.ICollection.SyncRoot { get { throw null; } }
- public void Clear() { }
- public bool Contains(T item) { throw null; }
- public void CopyTo(T[] array, int arrayIndex) { }
- public T Dequeue() { throw null; }
- public void Enqueue(T item) { }
- public System.Collections.Generic.Queue<T>.Enumerator GetEnumerator() { throw null; }
- public T Peek() { throw null; }
- System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
- void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
- System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
- public T[] ToArray() { throw null; }
- public void TrimExcess() { }
- public bool TryDequeue(out T result) { result = default(T); throw null; }
- public bool TryPeek(out T result) { result = default(T); throw null; }
- [System.SerializableAttribute]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable
- {
- public T Current { get { throw null; } }
- object System.Collections.IEnumerator.Current { get { throw null; } }
- public void Dispose() { }
- public bool MoveNext() { throw null; }
- void System.Collections.IEnumerator.Reset() { }
- }
- }
- [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
[System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.IDictionaryDebugView<K, V>")]
[System.SerializableAttribute]
public partial class SortedDictionary<TKey, TValue> : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<TKey, TValue>>, System.Collections.Generic.IDictionary<TKey, TValue>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey, TValue>>, System.Collections.Generic.IReadOnlyCollection<System.Collections.Generic.KeyValuePair<TKey, TValue>>, System.Collections.Generic.IReadOnlyDictionary<TKey, TValue>, System.Collections.ICollection, System.Collections.IDictionary, System.Collections.IEnumerable
@@ -780,43 +745,6 @@ namespace System.Collections.Generic
void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
}
}
- [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
- [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.StackDebugView<T>")]
- [System.Runtime.CompilerServices.TypeForwardedFromAttribute("System, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
- [System.SerializableAttribute]
- public partial class Stack<T> : System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IReadOnlyCollection<T>, System.Collections.ICollection, System.Collections.IEnumerable
- {
- public Stack() { }
- public Stack(System.Collections.Generic.IEnumerable<T> collection) { }
- public Stack(int capacity) { }
- public int Count { get { throw null; } }
- bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
- object System.Collections.ICollection.SyncRoot { get { throw null; } }
- public void Clear() { }
- public bool Contains(T item) { throw null; }
- public void CopyTo(T[] array, int arrayIndex) { }
- public System.Collections.Generic.Stack<T>.Enumerator GetEnumerator() { throw null; }
- public T Peek() { throw null; }
- public T Pop() { throw null; }
- public void Push(T item) { }
- System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
- void System.Collections.ICollection.CopyTo(System.Array array, int arrayIndex) { }
- System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
- public T[] ToArray() { throw null; }
- public void TrimExcess() { }
- public bool TryPeek(out T result) { result = default(T); throw null; }
- public bool TryPop(out T result) { result = default(T); throw null; }
- [System.SerializableAttribute]
- [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
- public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable
- {
- public T Current { get { throw null; } }
- object System.Collections.IEnumerator.Current { get { throw null; } }
- public void Dispose() { }
- public bool MoveNext() { throw null; }
- void System.Collections.IEnumerator.Reset() { }
- }
- }
}
namespace System.Collections.ObjectModel
{