Skip to content

Commit

Permalink
Add better comment to BsonReader ReadAsLocalTime property.
Browse files Browse the repository at this point in the history
  • Loading branch information
lanwin committed May 5, 2010
1 parent 506af8b commit 2a7ca5b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions source/MongoDB/Bson/BsonReaderSettings.cs
Expand Up @@ -32,10 +32,13 @@ public BsonReaderSettings()
public IBsonObjectBuilder Builder { get; private set; }

/// <summary>
/// MongoDB stores all time values in UTC timezone. If true the
/// time is converted from UTC to local timezone after is was read.
/// Reads DataTime from server as local time.
/// </summary>
/// <value><c>true</c> if [read local time]; otherwise, <c>false</c>.</value>
/// <remarks>
/// MongoDB stores all time values in UTC timezone. If true the
/// time is converted from UTC to local timezone after is was read.
/// </remarks>
public bool ReadLocalTime { get; set; }
}
}

0 comments on commit 2a7ca5b

Please sign in to comment.