diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-16 20:39:44 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-16 20:39:44 -0800 |
commit | b008f1e9ff41584ede444657e121870f1f1ed6fc (patch) | |
tree | 1e824408fe62fbca8362f78052092743f045df8e /projecttemplates/RelyingPartyLogic/Model.IssuedAccessToken.cs | |
parent | dbc33d404f55e5d76e5d6d5f9db8dad0b9747e3c (diff) | |
download | DotNetOpenAuth-b008f1e9ff41584ede444657e121870f1f1ed6fc.zip DotNetOpenAuth-b008f1e9ff41584ede444657e121870f1f1ed6fc.tar.gz DotNetOpenAuth-b008f1e9ff41584ede444657e121870f1f1ed6fc.tar.bz2 |
Added a few new columns to the project template's database.
Diffstat (limited to 'projecttemplates/RelyingPartyLogic/Model.IssuedAccessToken.cs')
-rw-r--r-- | projecttemplates/RelyingPartyLogic/Model.IssuedAccessToken.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/projecttemplates/RelyingPartyLogic/Model.IssuedAccessToken.cs b/projecttemplates/RelyingPartyLogic/Model.IssuedAccessToken.cs index fff27af..d966baf 100644 --- a/projecttemplates/RelyingPartyLogic/Model.IssuedAccessToken.cs +++ b/projecttemplates/RelyingPartyLogic/Model.IssuedAccessToken.cs @@ -54,5 +54,21 @@ namespace RelyingPartyLogic { return this.User.AuthenticationTokens.First().ClaimedIdentifier; } } + + /// <summary> + /// Gets the expiration date (local time) for the access token. + /// </summary> + /// <value> + /// The expiration date, or <c>null</c> if there is no expiration date. + /// </value> + DateTime? IServiceProviderAccessToken.ExpirationDate { + get { return this.ExpirationDateUtc.HasValue ? (DateTime?)this.ExpirationDateUtc.Value.ToLocalTime() : null; } + } + + partial void OnExpirationDateUtcChanging(DateTime? value) { + if (value.HasValue && value.Value.Kind != DateTimeKind.Utc) { + throw new ArgumentException("DateTime must be given in UTC time."); + } + } } } |