Class TzdbDateTimeZoneSource
  
Provides an implementation of 
IDateTimeZoneSource that loads data originating from the
tz database (also known as the IANA Time Zone database, or zoneinfo
or Olson database).
  Since 1.0.x
  
  
  Availability net45, netstandard1.3
  
  
    Inheritance
    Object
    TzdbDateTimeZoneSource
   
  
  
    Inherited Members
    
      Object.ToString()
    
    
      Object.Equals(Object)
    
    
      Object.Equals(Object, Object)
    
    
      Object.ReferenceEquals(Object, Object)
    
    
      Object.GetHashCode()
    
    
      Object.GetType()
    
    
      Object.MemberwiseClone()
    
   
  
  Assembly: NodaTime.dll
  Syntax
  
    public sealed class TzdbDateTimeZoneSource : IDateTimeZoneSource
   
  
  
  Properties
  
  Aliases
  
Gets a lookup from canonical time zone ID (e.g. "Europe/London") to a group of aliases for that time zone
(e.g. {"Europe/Belfast", "Europe/Guernsey", "Europe/Jersey", "Europe/Isle_of_Man", "GB", "GB-Eire"}).
  
  
  Since 1.1.x
  
  
  Availability net45, netstandard1.3
  
  Declaration
  
    public ILookup<string, string> Aliases { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | ILookup<String, String> | A lookup from canonical ID to the aliases of that ID. (The value returned is never null.) | 
    
  
  
  
  
  CanonicalIdMap
  
Returns a read-only map from time zone ID to the canonical ID. For example, the key "Europe/Jersey"
would be associated with the value "Europe/London".
  
  
  Since 1.1.x
  
  
  Availability net45, netstandard1.3
  
  Declaration
  
    public IDictionary<string, string> CanonicalIdMap { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | IDictionary<String, String> | A map from time zone ID to the canonical ID. (The value returned is never null.) | 
    
  
  
  
  
  Default
  
  
  
  Since 1.1.x
  
  
  Availability net45, netstandard1.3
  
  Declaration
  
    public static TzdbDateTimeZoneSource Default { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | TzdbDateTimeZoneSource | The source initialised from resources within the NodaTime assembly. (The value returned is never null.) | 
    
  
  
  TzdbVersion
  
Gets just the TZDB version (e.g. "2013a") of the source data.
  
  
  Since 1.1.x
  
  
  Availability net45, netstandard1.3
  
  Declaration
  
    public string TzdbVersion { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | String | The TZDB version (e.g. "2013a") of the source data. (The value returned is never null.) | 
    
  
  
  VersionId
  
Returns an appropriate version ID for diagnostic purposes, which must not be null.
  
  
  Since 1.0.x
  
  
  Availability net45, netstandard1.3
  
  Declaration
  
    public string VersionId { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | String | An appropriate version ID for diagnostic purposes. (The value returned is never null.) | 
    
  
  
  
  
  WindowsMapping
  
Gets the Windows time zone mapping information provided in the CLDR
supplemental "windowsZones.xml" file.
  
  
  Since 1.1.x
  
  
  Availability net45, netstandard1.3
  
  Declaration
  
    public WindowsZones WindowsMapping { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | WindowsZones | The Windows time zone mapping information provided in the CLDR
supplemental "windowsZones.xml" file. (The value returned is never null.) | 
    
  
  
  Zone1970Locations
  
Gets a read-only list of "zone 1970" locations known to this source, or null if the original source data
does not include zone locations.
  
  
  Since 2.0.x
  
  
  Availability net45, netstandard1.3
  
  Declaration
  
    public IList<TzdbZone1970Location> Zone1970Locations { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | IList<TzdbZone1970Location> | A read-only list of zone locations known to this source. | 
    
  
  
  
  
  ZoneLocations
  
Gets a read-only list of zone locations known to this source, or null if the original source data
does not include zone locations.
  
  
  Since 1.1.x
  
  
  Availability net45, netstandard1.3
  
  Declaration
  
    public IList<TzdbZoneLocation> ZoneLocations { get; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | IList<TzdbZoneLocation> | A read-only list of zone locations known to this source. | 
    
  
  
  
  Methods
  
  ForId(String)
  
Returns the time zone definition associated with the given ID.
  
  
  Since 1.0.x
  
  
  Availability net45, netstandard1.3
  
  Declaration
  
    public DateTimeZone ForId(string id)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | String | id | The ID of the time zone to return. This must be one of the IDs
returned by GetIds(). | 
    
  
  Returns
  
  
  
  Exceptions
  
    
      
        | Type | Condition | 
    
    
      
        | ArgumentException | idis not supported by this source. | 
      
        | ArgumentNullException | id is null. | 
    
  
  
  FromStream(Stream)
  
Creates an instance from a stream in the custom Noda Time format. The stream must be readable.
  
  
  Since 1.1.x
  
  
  Availability net45, netstandard1.3
  
  Declaration
  
    public static TzdbDateTimeZoneSource FromStream(Stream stream)
   
  Parameters
  
    
      
        | Type | Name | Description | 
    
    
      
        | Stream | stream | The stream containing time zone data | 
    
  
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | TzdbDateTimeZoneSource | A TzdbDateTimeZoneSourceproviding information from the given stream. (The value returned is never null.) | 
    
  
  
  
  Exceptions
  
    
      
        | Type | Condition | 
    
    
      
        | InvalidNodaDataException | The stream contains invalid time zone data, or data which cannot
be read by this version of Noda Time. | 
      
        | System.IO.IOException | Reading from the stream failed. | 
      
        | System.InvalidOperationException | The supplied stream doesn't support reading. | 
      
        | ArgumentNullException | stream is null. | 
    
  
  
  GetIds()
  
Returns an unordered enumeration of the IDs available from this source.
  
  
  Since 1.0.x
  
  
  Availability net45, netstandard1.3
  
  Declaration
  
    public IEnumerable<string> GetIds()
   
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | IEnumerable<String> | The IDs available from this source. (The value returned is never null.) | 
    
  
  
  
  
  GetSystemDefaultId()
  
Returns this source's ID for the system default time zone.
  
  
  Since 2.0.x
  
  
  Availability net45, netstandard1.3
  
  Declaration
  
    public string GetSystemDefaultId()
   
  Returns
  
    
      
        | Type | Description | 
    
    
      
        | String | The ID for the system default time zone for this source,
or null if the system default time zone has no mapping in this source. | 
    
  
  
  Validate()
  
Validates that the data within this source is consistent with itself.
  
  
  Since 1.1.x
  
  
  Availability net45, netstandard1.3
  
  Declaration
  
  
  
  Exceptions
  
  Implements