Skip to content

Commit

Permalink
Update ref/ contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
stakx committed May 12, 2020
1 parent 799eb03 commit a5fe484
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 2 deletions.
29 changes: 28 additions & 1 deletion ref/Castle.Core-netstandard2.0.cs
Expand Up @@ -716,6 +716,28 @@ public class RemoveIfEmptyAttribute : Castle.Components.DictionaryAdapter.Remove
{
public RemoveIfEmptyAttribute() { }
}
public class SetProjection<T> : Castle.Components.DictionaryAdapter.ListProjection<T>, System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.ISet<T>, System.Collections.IEnumerable
{
public SetProjection(Castle.Components.DictionaryAdapter.ICollectionAdapter<T> adapter) { }
public override bool Add(T item) { }
public override void Clear() { }
public override bool Contains(T item) { }
public override void EndNew(int index) { }
public void ExceptWith(System.Collections.Generic.IEnumerable<T> other) { }
public void IntersectWith(System.Collections.Generic.IEnumerable<T> other) { }
public bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other) { }
public bool IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other) { }
public bool IsSubsetOf(System.Collections.Generic.IEnumerable<T> other) { }
public bool IsSupersetOf(System.Collections.Generic.IEnumerable<T> other) { }
protected override bool OnInserting(T value) { }
protected override bool OnReplacing(T oldValue, T newValue) { }
public bool Overlaps(System.Collections.Generic.IEnumerable<T> other) { }
public override bool Remove(T item) { }
public override void RemoveAt(int index) { }
public bool SetEquals(System.Collections.Generic.IEnumerable<T> other) { }
public void SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other) { }
public void UnionWith(System.Collections.Generic.IEnumerable<T> other) { }
}
[System.AttributeUsageAttribute(System.AttributeTargets.Property | System.AttributeTargets.All, AllowMultiple=false, Inherited=false)]
public class StringFormatAttribute : Castle.Components.DictionaryAdapter.DictionaryBehaviorAttribute, Castle.Components.DictionaryAdapter.IDictionaryBehavior, Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter
{
Expand Down Expand Up @@ -1633,6 +1655,12 @@ public class XmlSelfCursor : Castle.Components.DictionaryAdapter.IVirtual, Castl
public System.Xml.XmlWriter WriteAttributes() { }
public System.Xml.XmlWriter WriteChildren() { }
}
public class XmlSetSerializer : Castle.Components.DictionaryAdapter.Xml.XmlCollectionSerializer
{
public static readonly Castle.Components.DictionaryAdapter.Xml.XmlSetSerializer Instance;
protected XmlSetSerializer() { }
public override System.Type ListTypeConstructor { get; }
}
public class static XmlSimpleSerializer
{
public static readonly Castle.Components.DictionaryAdapter.Xml.XmlTypeSerializer ForBoolean;
Expand Down Expand Up @@ -1678,7 +1706,6 @@ public class XmlSubtreeReader : System.Xml.XmlReader
public override string BaseURI { get; }
public override int Depth { get; }
public override bool EOF { get; }
public override bool HasValue { get; }
public bool IsAtRootElement { get; }
public bool IsDisposed { get; }
public override bool IsEmptyElement { get; }
Expand Down
29 changes: 28 additions & 1 deletion ref/Castle.Core-netstandard2.1.cs
Expand Up @@ -716,6 +716,28 @@ public class RemoveIfEmptyAttribute : Castle.Components.DictionaryAdapter.Remove
{
public RemoveIfEmptyAttribute() { }
}
public class SetProjection<T> : Castle.Components.DictionaryAdapter.ListProjection<T>, System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.ISet<T>, System.Collections.IEnumerable
{
public SetProjection(Castle.Components.DictionaryAdapter.ICollectionAdapter<T> adapter) { }
public override bool Add(T item) { }
public override void Clear() { }
public override bool Contains(T item) { }
public override void EndNew(int index) { }
public void ExceptWith(System.Collections.Generic.IEnumerable<T> other) { }
public void IntersectWith(System.Collections.Generic.IEnumerable<T> other) { }
public bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other) { }
public bool IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other) { }
public bool IsSubsetOf(System.Collections.Generic.IEnumerable<T> other) { }
public bool IsSupersetOf(System.Collections.Generic.IEnumerable<T> other) { }
protected override bool OnInserting(T value) { }
protected override bool OnReplacing(T oldValue, T newValue) { }
public bool Overlaps(System.Collections.Generic.IEnumerable<T> other) { }
public override bool Remove(T item) { }
public override void RemoveAt(int index) { }
public bool SetEquals(System.Collections.Generic.IEnumerable<T> other) { }
public void SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other) { }
public void UnionWith(System.Collections.Generic.IEnumerable<T> other) { }
}
[System.AttributeUsageAttribute(System.AttributeTargets.Property | System.AttributeTargets.All, AllowMultiple=false, Inherited=false)]
public class StringFormatAttribute : Castle.Components.DictionaryAdapter.DictionaryBehaviorAttribute, Castle.Components.DictionaryAdapter.IDictionaryBehavior, Castle.Components.DictionaryAdapter.IDictionaryPropertyGetter
{
Expand Down Expand Up @@ -1633,6 +1655,12 @@ public class XmlSelfCursor : Castle.Components.DictionaryAdapter.IVirtual, Castl
public System.Xml.XmlWriter WriteAttributes() { }
public System.Xml.XmlWriter WriteChildren() { }
}
public class XmlSetSerializer : Castle.Components.DictionaryAdapter.Xml.XmlCollectionSerializer
{
public static readonly Castle.Components.DictionaryAdapter.Xml.XmlSetSerializer Instance;
protected XmlSetSerializer() { }
public override System.Type ListTypeConstructor { get; }
}
public class static XmlSimpleSerializer
{
public static readonly Castle.Components.DictionaryAdapter.Xml.XmlTypeSerializer ForBoolean;
Expand Down Expand Up @@ -1678,7 +1706,6 @@ public class XmlSubtreeReader : System.Xml.XmlReader
public override string BaseURI { get; }
public override int Depth { get; }
public override bool EOF { get; }
public override bool HasValue { get; }
public bool IsAtRootElement { get; }
public bool IsDisposed { get; }
public override bool IsEmptyElement { get; }
Expand Down

0 comments on commit a5fe484

Please sign in to comment.