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-03-23 16:18:37 +0300
committermonojenkins <jo.shields+jenkins@xamarin.com>2018-03-23 16:18:37 +0300
commita47409728af35971a1c2c077c89fd0dc39ac1cda (patch)
tree918e5dcb91e297842645b6bb647131a1f8afbc5d /profiles/monotouch/System.cs
parent37d5e23a7076c651fcfce0e63759c21f46213275 (diff)
Apply changes from https://github.com/mono/mono/pull/7478 to API snapshot
Diffstat (limited to 'profiles/monotouch/System.cs')
-rw-r--r--profiles/monotouch/System.cs15
1 files changed, 13 insertions, 2 deletions
diff --git a/profiles/monotouch/System.cs b/profiles/monotouch/System.cs
index 70210a1..3166c0b 100644
--- a/profiles/monotouch/System.cs
+++ b/profiles/monotouch/System.cs
@@ -818,6 +818,8 @@ namespace System.Collections.Generic
}
namespace System.Collections.ObjectModel
{
+ [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
+ [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.CollectionDebugView<T>")]
[System.SerializableAttribute]
public partial class ObservableCollection<T> : System.Collections.ObjectModel.Collection<T>, System.Collections.Specialized.INotifyCollectionChanged, System.ComponentModel.INotifyPropertyChanged
{
@@ -838,6 +840,8 @@ namespace System.Collections.ObjectModel
protected override void RemoveItem(int index) { }
protected override void SetItem(int index, T item) { }
}
+ [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
+ [System.Diagnostics.DebuggerTypeProxyAttribute("System.Collections.Generic.CollectionDebugView<T>")]
[System.SerializableAttribute]
public partial class ReadOnlyObservableCollection<T> : System.Collections.ObjectModel.ReadOnlyCollection<T>, System.Collections.Specialized.INotifyCollectionChanged, System.ComponentModel.INotifyPropertyChanged
{
@@ -868,6 +872,7 @@ namespace System.Collections.Specialized
public override int GetHashCode() { throw null; }
public override string ToString() { throw null; }
public static string ToString(System.Collections.Specialized.BitVector32 value) { throw null; }
+ [System.Runtime.CompilerServices.IsReadOnlyAttribute]
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
public partial struct Section
{
@@ -944,6 +949,14 @@ namespace System.Collections.Specialized
public System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; }
public void Remove(object key) { }
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
+ [System.SerializableAttribute]
+ public partial class DictionaryNode
+ {
+ public object key;
+ public System.Collections.Specialized.ListDictionary.DictionaryNode next;
+ public object value;
+ public DictionaryNode() { }
+ }
}
[System.SerializableAttribute]
public abstract partial class NameObjectCollectionBase : System.Collections.ICollection, System.Collections.IEnumerable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
@@ -1075,7 +1088,6 @@ namespace System.Collections.Specialized
public bool Contains(object key) { throw null; }
public void CopyTo(System.Array array, int index) { }
public virtual System.Collections.IDictionaryEnumerator GetEnumerator() { throw null; }
- [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Flags=(System.Security.Permissions.SecurityPermissionFlag)(128))]
public virtual void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
public void Insert(int index, object key, object value) { }
protected virtual void OnDeserialization(object sender) { }
@@ -1114,7 +1126,6 @@ namespace System.Collections.Specialized
void System.Collections.IList.Insert(int index, object value) { }
void System.Collections.IList.Remove(object value) { }
}
- [System.ComponentModel.Design.Serialization.DesignerSerializerAttribute("System.Diagnostics.Design.StringDictionaryCodeDomSerializer, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.Serialization.CodeDomSerializer, System.Design, Version=2.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
[System.SerializableAttribute]
public partial class StringDictionary : System.Collections.IEnumerable
{