Show / Hide Table of Contents

Interface ITransferCollection

Abstract representation of a collection of Transfer.

Inherited Members
System.Collections.Generic.IEnumerable<GTFS.Entities.Transfer>.GetEnumerator()
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public interface ITransferCollection : IEnumerable<Transfer>, IEnumerable

Methods

Add(Transfer)

Adds a new transfer.

Declaration
void Add(Transfer transfer)
Parameters
Transfer transfer

AddRange(IEnumerable<Transfer>)

Adds a new transfer.

Declaration
void AddRange(IEnumerable<Transfer> transfer)
Parameters
System.Collections.Generic.IEnumerable<Transfer> transfer

Get()

Gets all transfers.

Declaration
IEnumerable<Transfer> Get()
Returns
System.Collections.Generic.IEnumerable<Transfer>

GetForFromStop(String)

Gets all transfers for the given from stop.

Declaration
IEnumerable<Transfer> GetForFromStop(string stopId)
Parameters
System.String stopId

Returns
System.Collections.Generic.IEnumerable<Transfer>

GetForToStop(String)

Gets all transfers for the given to stop.

Declaration
IEnumerable<Transfer> GetForToStop(string stopId)
Parameters
System.String stopId

Returns
System.Collections.Generic.IEnumerable<Transfer>

RemoveForFromStop(String)

Removes all transfers for the given from stop.

Declaration
int RemoveForFromStop(string stopId)
Parameters
System.String stopId

Returns
System.Int32

RemoveForToStop(String)

Removes all transfers for the given to stop.

Declaration
int RemoveForToStop(string stopId)
Parameters
System.String stopId

Returns
System.Int32

Back to top Built by Itinero, MIT licensed.