Lines Matching refs:Extension
43 public sealed class ExtensionRegistry : ICollection<Extension>, IDeepCloneable<ExtensionRegistry>
45 internal sealed class ExtensionComparer : IEqualityComparer<Extension>
47 public bool Equals(Extension a, Extension b)
51 public int GetHashCode(Extension a)
58 private IDictionary<ObjectIntPair<Type>, Extension> extensions;
65 extensions = new Dictionary<ObjectIntPair<Type>, Extension>();
68 private ExtensionRegistry(IDictionary<ObjectIntPair<Type>, Extension> collection)
81 bool ICollection<Extension>.IsReadOnly => false;
83 internal bool ContainsInputField(uint lastTag, Type target, out Extension extension)
91 public void Add(Extension extension)
101 public void AddRange(IEnumerable<Extension> extensions)
122 public bool Contains(Extension item)
134 void ICollection<Extension>.CopyTo(Extension[] array, int arrayIndex)
148 Extension extension = array[i];
157 public IEnumerator<Extension> GetEnumerator()
167 public bool Remove(Extension item)