- Initial commit
This commit is contained in:
63
Runtime/3rdParty/BouncyCastle/util/collections/ReadOnlyList.cs
vendored
Normal file
63
Runtime/3rdParty/BouncyCastle/util/collections/ReadOnlyList.cs
vendored
Normal file
@ -0,0 +1,63 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections
|
||||
{
|
||||
internal abstract class ReadOnlyList<T>
|
||||
: IList<T>
|
||||
{
|
||||
public T this[int index]
|
||||
{
|
||||
get { return Lookup(index); }
|
||||
set { throw new NotSupportedException(); }
|
||||
}
|
||||
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
|
||||
{
|
||||
return GetEnumerator();
|
||||
}
|
||||
|
||||
public bool IsReadOnly => true;
|
||||
|
||||
public void Add(T item) => throw new NotSupportedException();
|
||||
public void Clear() => throw new NotSupportedException();
|
||||
public void Insert(int index, T item) => throw new NotSupportedException();
|
||||
public bool Remove(T item) => throw new NotSupportedException();
|
||||
public void RemoveAt(int index) => throw new NotSupportedException();
|
||||
|
||||
|
||||
public abstract bool Contains(T item);
|
||||
public abstract void CopyTo(T[] array, int arrayIndex);
|
||||
public abstract int Count { get; }
|
||||
public abstract IEnumerator<T> GetEnumerator();
|
||||
public abstract int IndexOf(T item);
|
||||
|
||||
protected abstract T Lookup(int index);
|
||||
}
|
||||
|
||||
internal class ReadOnlyListProxy<T>
|
||||
: ReadOnlyList<T>
|
||||
{
|
||||
private readonly IList<T> m_target;
|
||||
|
||||
internal ReadOnlyListProxy(IList<T> target)
|
||||
{
|
||||
if (target == null)
|
||||
throw new ArgumentNullException(nameof(target));
|
||||
|
||||
m_target = target;
|
||||
}
|
||||
|
||||
public override int Count => m_target.Count;
|
||||
public override bool Contains(T item) => m_target.Contains(item);
|
||||
public override void CopyTo(T[] array, int arrayIndex) => m_target.CopyTo(array, arrayIndex);
|
||||
public override IEnumerator<T> GetEnumerator() => m_target.GetEnumerator();
|
||||
public override int IndexOf(T item) => m_target.IndexOf(item);
|
||||
|
||||
protected override T Lookup(int index) => m_target[index];
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user