Show / Hide Table of Contents

Class ProductAttributeTypeContainer

Holds a set of ProductAttributeTypes associated with a Product.

Inheritance
System.Object
ProductAttributeTypeContainer
Implements
System.Collections.Generic.IEnumerable<ProductAttributeType>
System.Collections.IEnumerable
Inherited Members
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: Moraware.JobTrackerAPI5
Assembly: JobTrackerAPI5.dll
Syntax
public class ProductAttributeTypeContainer : IEnumerable<ProductAttributeType>, IEnumerable

Properties

Count

The number of ProductAttributeTypes in the container.

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

Item[Int32]

The ProductAttributeType at the given index.

Declaration
public ProductAttributeType this[int zeroBasedIndex_] { get; }
Parameters
Type Name Description
System.Int32 zeroBasedIndex_

Zero-based index to retrieve.

Property Value
Type Description
ProductAttributeType

Methods

GetEnumerator()

Provides an iterator over the collection members.

Declaration
public IEnumerator<ProductAttributeType> GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<ProductAttributeType>

A strongly typed iterator over the collection members.

Remarks

This method is present primarily to support the For ... Each syntax.

GetEnumerator1()

Declaration
public IEnumerator GetEnumerator1()
Returns
Type Description
System.Collections.IEnumerator

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Provides a strongly typed iterator over the collection members.

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

An iterator over the collection members.

Remarks

This method is present primarily to support the For ... Each syntax.

Implements

System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable
Back to top Generated by DocFX