Class BaseBECollection<T>
Inheritance
System.Object
System.Collections.Generic.List<T>
BaseBECollection<T>
Implements
System.Collections.Generic.IList<T>
System.Collections.Generic.ICollection<T>
System.Collections.IList
System.Collections.ICollection
System.Collections.Generic.IReadOnlyList<T>
System.Collections.Generic.IReadOnlyCollection<T>
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable
Inherited Members
System.Collections.Generic.List<T>.System.Collections.IList.get_Item(System.Int32)
System.Collections.Generic.List<T>.System.Collections.IList.set_Item(System.Int32, System.Object)
System.Collections.Generic.List<T>.Add(T)
System.Collections.Generic.List<T>.System.Collections.IList.Add(System.Object)
System.Collections.Generic.List<T>.AddRange(System.Collections.Generic.IEnumerable<T>)
System.Collections.Generic.List<T>.AsReadOnly()
System.Collections.Generic.List<T>.BinarySearch(System.Int32, System.Int32, T, System.Collections.Generic.IComparer<T>)
System.Collections.Generic.List<T>.BinarySearch(T)
System.Collections.Generic.List<T>.BinarySearch(T, System.Collections.Generic.IComparer<T>)
System.Collections.Generic.List<T>.Contains(T)
System.Collections.Generic.List<T>.System.Collections.IList.Contains(System.Object)
System.Collections.Generic.List<T>.ConvertAll<TOutput>(System.Converter<T, TOutput>)
System.Collections.Generic.List<T>.CopyTo(T[])
System.Collections.Generic.List<T>.System.Collections.ICollection.CopyTo(System.Array, System.Int32)
System.Collections.Generic.List<T>.CopyTo(System.Int32, T[], System.Int32, System.Int32)
System.Collections.Generic.List<T>.CopyTo(T[], System.Int32)
System.Collections.Generic.List<T>.Exists(System.Predicate<T>)
System.Collections.Generic.List<T>.Find(System.Predicate<T>)
System.Collections.Generic.List<T>.FindAll(System.Predicate<T>)
System.Collections.Generic.List<T>.FindIndex(System.Predicate<T>)
System.Collections.Generic.List<T>.FindIndex(System.Int32, System.Predicate<T>)
System.Collections.Generic.List<T>.FindIndex(System.Int32, System.Int32, System.Predicate<T>)
System.Collections.Generic.List<T>.FindLast(System.Predicate<T>)
System.Collections.Generic.List<T>.FindLastIndex(System.Predicate<T>)
System.Collections.Generic.List<T>.FindLastIndex(System.Int32, System.Predicate<T>)
System.Collections.Generic.List<T>.FindLastIndex(System.Int32, System.Int32, System.Predicate<T>)
System.Collections.Generic.List<T>.ForEach(System.Action<T>)
System.Collections.Generic.List<T>.GetEnumerator()
System.Collections.Generic.List<T>.System.Collections.Generic.IEnumerable<T>.GetEnumerator()
System.Collections.Generic.List<T>.System.Collections.IEnumerable.GetEnumerator()
System.Collections.Generic.List<T>.GetRange(System.Int32, System.Int32)
System.Collections.Generic.List<T>.IndexOf(T)
System.Collections.Generic.List<T>.System.Collections.IList.IndexOf(System.Object)
System.Collections.Generic.List<T>.IndexOf(T, System.Int32)
System.Collections.Generic.List<T>.IndexOf(T, System.Int32, System.Int32)
System.Collections.Generic.List<T>.Insert(System.Int32, T)
System.Collections.Generic.List<T>.System.Collections.IList.Insert(System.Int32, System.Object)
System.Collections.Generic.List<T>.InsertRange(System.Int32, System.Collections.Generic.IEnumerable<T>)
System.Collections.Generic.List<T>.LastIndexOf(T)
System.Collections.Generic.List<T>.LastIndexOf(T, System.Int32)
System.Collections.Generic.List<T>.LastIndexOf(T, System.Int32, System.Int32)
System.Collections.Generic.List<T>.System.Collections.IList.Remove(System.Object)
System.Collections.Generic.List<T>.Reverse()
System.Collections.Generic.List<T>.Reverse(System.Int32, System.Int32)
System.Collections.Generic.List<T>.Sort()
System.Collections.Generic.List<T>.Sort(System.Collections.Generic.IComparer<T>)
System.Collections.Generic.List<T>.Sort(System.Int32, System.Int32, System.Collections.Generic.IComparer<T>)
System.Collections.Generic.List<T>.Sort(System.Comparison<T>)
System.Collections.Generic.List<T>.ToArray()
System.Collections.Generic.List<T>.TrimExcess()
System.Collections.Generic.List<T>.TrueForAll(System.Predicate<T>)
System.Collections.Generic.List<T>.Capacity
System.Collections.Generic.List<T>.Count
System.Collections.Generic.List<T>.System.Collections.IList.IsFixedSize
System.Collections.Generic.List<T>.System.Collections.Generic.ICollection<T>.IsReadOnly
System.Collections.Generic.List<T>.System.Collections.IList.IsReadOnly
System.Collections.Generic.List<T>.System.Collections.ICollection.IsSynchronized
System.Collections.Generic.List<T>.System.Collections.ICollection.SyncRoot
System.Collections.Generic.List<T>.Item[System.Int32]
System.Collections.Generic.List<T>.System.Collections.IList.Item[System.Int32]
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: BasBE100
Assembly: BasBE100.dll
Syntax
public class BaseBECollection<T> : List<T>, IList<T>, ICollection<T>, IList, ICollection, IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable where T : BaseBE
Type Parameters
Name | Description |
---|---|
T |
Constructors
BaseBECollection()
Declaration
public BaseBECollection()
Properties
Removidas
Declaration
public List<T> Removidas { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<T> |
Methods
Clear()
Declaration
public void Clear()
Clone()
Clones this instance.
Declaration
public dynamic Clone()
Returns
Type | Description |
---|---|
System.Object |
Remove(T)
Declaration
public bool Remove(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item |
Returns
Type | Description |
---|---|
System.Boolean |
RemoveAll(Predicate<T>)
Declaration
public int RemoveAll(Predicate<T> match)
Parameters
Type | Name | Description |
---|---|---|
System.Predicate<T> | match |
Returns
Type | Description |
---|---|
System.Int32 |
RemoveAt(Int32)
Declaration
public void RemoveAt(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
RemoveRange(Int32, Int32)
Declaration
public void RemoveRange(int index, int count)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | |
System.Int32 | count |
SerializeJson()
Serializes the json.
Declaration
public string SerializeJson()
Returns
Type | Description |
---|---|
System.String |
SerializeJson(List<String>)
Serializes the json.
Declaration
public string SerializeJson(List<string> ignoreProperties)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.List<System.String> | ignoreProperties | The ignore properties. |
Returns
Type | Description |
---|---|
System.String |
SerializeJsonToXml(String, List<String>)
Serializes the json to XML.
Declaration
public string SerializeJsonToXml(string rootElement, List<string> ignoreProperties)
Parameters
Type | Name | Description |
---|---|---|
System.String | rootElement | The root element. |
System.Collections.Generic.List<System.String> | ignoreProperties | The ignore properties. |
Returns
Type | Description |
---|---|
System.String |
SerializeXml(XmlAttributeOverrides, XmlSerializerNamespaces)
Serializes the XML.
Declaration
public XmlDocument SerializeXml(XmlAttributeOverrides xmlAttributeOverrides = null, XmlSerializerNamespaces namespaces = null)
Parameters
Type | Name | Description |
---|---|---|
System.Xml.Serialization.XmlAttributeOverrides | xmlAttributeOverrides | The XML attribute overrides. |
System.Xml.Serialization.XmlSerializerNamespaces | namespaces | The namespaces. |
Returns
Type | Description |
---|---|
System.Xml.XmlDocument |
Implements
System.Collections.Generic.IList<T>
System.Collections.Generic.ICollection<T>
System.Collections.IList
System.Collections.ICollection
System.Collections.Generic.IReadOnlyList<T>
System.Collections.Generic.IReadOnlyCollection<T>
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable