Class Repeatable<T> (1.60.0)

public class Repeatable<T> : IEnumerable<T>, IEnumerable

Repeatable class which allows you to both pass a single element, as well as an array, as a parameter value.

Inheritance

object > Repeatable<T>

Implements

IEnumerable, IEnumerable

Namespace

GoogleApisUtil

Assembly

Google.Apis.Core.dll

Type Parameter

NameDescription
T

Constructors

Repeatable(IEnumerable<T>)

public Repeatable(IEnumerable<T> enumeration)

Creates a repeatable value.

Parameter
NameDescription
enumerationIEnumerable

Methods

GetEnumerator()

public IEnumerator<T> GetEnumerator()
Returns
TypeDescription
IEnumerator

Operators

implicit operator Repeatable<T>(T)

public static implicit operator Repeatable<T>(T elem)

Converts the single element into a repeatable.

Parameter
NameDescription
elemT
Returns
TypeDescription
Repeatable

implicit operator Repeatable<T>(T[])

public static implicit operator Repeatable<T>(T[] elem)

Converts a number of elements into a repeatable.

Parameter
NameDescription
elem
Returns
TypeDescription
Repeatable

implicit operator Repeatable<T>(List<T>)

public static implicit operator Repeatable<T>(List<T> elem)

Converts a number of elements into a repeatable.

Parameter
NameDescription
elemList
Returns
TypeDescription
Repeatable

Explicit Interface Implementations

IEnumerable.GetEnumerator()

IEnumerator IEnumerable.GetEnumerator()
Returns
TypeDescription
IEnumerator

Extension Method