diff options
Diffstat (limited to 'src/DotNetOpenId/IEncodable.cs')
-rw-r--r-- | src/DotNetOpenId/IEncodable.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/DotNetOpenId/IEncodable.cs b/src/DotNetOpenId/IEncodable.cs index ef5ab60..18a0ba2 100644 --- a/src/DotNetOpenId/IEncodable.cs +++ b/src/DotNetOpenId/IEncodable.cs @@ -27,7 +27,11 @@ namespace DotNetOpenId { internal interface IEncodable {
EncodingType EncodingType { get; }
IDictionary<string, string> EncodedFields { get; }
+ /// <summary>
+ /// The URL that the user agent should be redirected to
+ /// in the case of <see cref="DotNetOpenId.EncodingType.IndirectMessage"/>.
+ /// Does not apply to <see cref="DotNetOpenId.EncodingType.DirectResponse"/>.
+ /// </summary>
Uri RedirectUrl { get; }
- Protocol Protocol { get; }
}
}
|