diff options
Diffstat (limited to 'src/DotNetOpenId/RelyingParty/IXrdsProviderEndpoint.cs')
-rw-r--r-- | src/DotNetOpenId/RelyingParty/IXrdsProviderEndpoint.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/DotNetOpenId/RelyingParty/IXrdsProviderEndpoint.cs b/src/DotNetOpenId/RelyingParty/IXrdsProviderEndpoint.cs index bc25747..78c873f 100644 --- a/src/DotNetOpenId/RelyingParty/IXrdsProviderEndpoint.cs +++ b/src/DotNetOpenId/RelyingParty/IXrdsProviderEndpoint.cs @@ -8,6 +8,10 @@ namespace DotNetOpenId.RelyingParty { [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Xrds")]
public interface IXrdsProviderEndpoint : IProviderEndpoint {
/// <summary>
+ /// Checks for the presence of a given Type URI in an XRDS service.
+ /// </summary>
+ bool IsTypeUriPresent(string typeUri);
+ /// <summary>
/// Gets the priority associated with this service that may have been given
/// in the XRDS document.
/// </summary>
|