Show / Hide Table of Contents

    Class EmbedStudAttachmentList

    Inheritance
    System.Object
    EmbedStudAttachmentList
    Implements
    System.Collections.Generic.IEnumerable<EmbedStudAttachment>
    System.Collections.IEnumerable
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ToString()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: DesignData.SDS2.Setup
    Assembly: DesignData.SDS2.Setup.dll
    Syntax
    public class EmbedStudAttachmentList : IEnumerable<EmbedStudAttachment>, IEnumerable

    Constructors

    EmbedStudAttachmentList()

    Declaration
    public EmbedStudAttachmentList()

    EmbedStudAttachmentList(EmbedStudAttachmentList)

    Declaration
    public EmbedStudAttachmentList(EmbedStudAttachmentList other)
    Parameters
    Type Name Description
    EmbedStudAttachmentList other

    EmbedStudAttachmentList(IEnumerable<EmbedStudAttachment>)

    Declaration
    public EmbedStudAttachmentList(IEnumerable<EmbedStudAttachment> c)
    Parameters
    Type Name Description
    System.Collections.Generic.IEnumerable<EmbedStudAttachment> c

    EmbedStudAttachmentList(IEnumerable)

    Declaration
    public EmbedStudAttachmentList(IEnumerable c)
    Parameters
    Type Name Description
    System.Collections.IEnumerable c

    EmbedStudAttachmentList(Int32)

    Declaration
    public EmbedStudAttachmentList(int capacity)
    Parameters
    Type Name Description
    System.Int32 capacity

    Properties

    Capacity

    Declaration
    public int Capacity { get; set; }
    Property Value
    Type Description
    System.Int32

    Count

    Declaration
    public int Count { get; }
    Property Value
    Type Description
    System.Int32

    IsFixedSize

    Declaration
    public bool IsFixedSize { get; }
    Property Value
    Type Description
    System.Boolean

    IsReadOnly

    Declaration
    public bool IsReadOnly { get; }
    Property Value
    Type Description
    System.Boolean

    IsSynchronized

    Declaration
    public bool IsSynchronized { get; }
    Property Value
    Type Description
    System.Boolean

    Item[Int32]

    Declaration
    public EmbedStudAttachment this[int index] { get; set; }
    Parameters
    Type Name Description
    System.Int32 index
    Property Value
    Type Description
    EmbedStudAttachment

    Methods

    Add(EmbedStudAttachment)

    Declaration
    public void Add(EmbedStudAttachment x)
    Parameters
    Type Name Description
    EmbedStudAttachment x

    AddRange(EmbedStudAttachmentList)

    Declaration
    public void AddRange(EmbedStudAttachmentList values)
    Parameters
    Type Name Description
    EmbedStudAttachmentList values

    Clear()

    Declaration
    public void Clear()

    CopyTo(EmbedStudAttachment[])

    Declaration
    public void CopyTo(EmbedStudAttachment[] array)
    Parameters
    Type Name Description
    EmbedStudAttachment[] array

    CopyTo(EmbedStudAttachment[], Int32)

    Declaration
    public void CopyTo(EmbedStudAttachment[] array, int arrayIndex)
    Parameters
    Type Name Description
    EmbedStudAttachment[] array
    System.Int32 arrayIndex

    CopyTo(Int32, EmbedStudAttachment[], Int32, Int32)

    Declaration
    public void CopyTo(int index, EmbedStudAttachment[] array, int arrayIndex, int count)
    Parameters
    Type Name Description
    System.Int32 index
    EmbedStudAttachment[] array
    System.Int32 arrayIndex
    System.Int32 count

    Finalize()

    Declaration
    protected void Finalize()

    GetEnumerator()

    Declaration
    public EmbedStudAttachmentList.EmbedStudAttachmentListEnumerator GetEnumerator()
    Returns
    Type Description
    EmbedStudAttachmentList.EmbedStudAttachmentListEnumerator

    GetRange(Int32, Int32)

    Declaration
    public EmbedStudAttachmentList GetRange(int index, int count)
    Parameters
    Type Name Description
    System.Int32 index
    System.Int32 count
    Returns
    Type Description
    EmbedStudAttachmentList

    Insert(Int32, EmbedStudAttachment)

    Declaration
    public void Insert(int index, EmbedStudAttachment x)
    Parameters
    Type Name Description
    System.Int32 index
    EmbedStudAttachment x

    InsertRange(Int32, EmbedStudAttachmentList)

    Declaration
    public void InsertRange(int index, EmbedStudAttachmentList values)
    Parameters
    Type Name Description
    System.Int32 index
    EmbedStudAttachmentList values

    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

    Repeat(EmbedStudAttachment, Int32)

    Declaration
    public static EmbedStudAttachmentList Repeat(EmbedStudAttachment value, int count)
    Parameters
    Type Name Description
    EmbedStudAttachment value
    System.Int32 count
    Returns
    Type Description
    EmbedStudAttachmentList

    Reverse()

    Declaration
    public void Reverse()

    Reverse(Int32, Int32)

    Declaration
    public void Reverse(int index, int count)
    Parameters
    Type Name Description
    System.Int32 index
    System.Int32 count

    SetRange(Int32, EmbedStudAttachmentList)

    Declaration
    public void SetRange(int index, EmbedStudAttachmentList values)
    Parameters
    Type Name Description
    System.Int32 index
    EmbedStudAttachmentList values

    ToArray()

    Declaration
    public EmbedStudAttachment[] ToArray()
    Returns
    Type Description
    EmbedStudAttachment[]

    Explicit Interface Implementations

    IEnumerable<EmbedStudAttachment>.GetEnumerator()

    Declaration
    IEnumerator<EmbedStudAttachment> IEnumerable<EmbedStudAttachment>.GetEnumerator()
    Returns
    Type Description
    System.Collections.Generic.IEnumerator<EmbedStudAttachment>

    IEnumerable.GetEnumerator()

    Declaration
    IEnumerator IEnumerable.GetEnumerator()
    Returns
    Type Description
    System.Collections.IEnumerator

    Implements

    System.Collections.Generic.IEnumerable<T>
    System.Collections.IEnumerable
    Back to top