diff options
Diffstat (limited to 'src/DotNetOpenAuth.OpenId/OpenId')
9 files changed, 12 insertions, 14 deletions
diff --git a/src/DotNetOpenAuth.OpenId/OpenId/Association.cs b/src/DotNetOpenAuth.OpenId/OpenId/Association.cs index 6e7850a..d063aa1 100644 --- a/src/DotNetOpenAuth.OpenId/OpenId/Association.cs +++ b/src/DotNetOpenAuth.OpenId/OpenId/Association.cs @@ -159,7 +159,7 @@ namespace DotNetOpenAuth.OpenId { /// <returns> /// The newly dehydrated <see cref="Association"/>, which can be returned /// from a custom association store's - /// <see cref="IRelyingPartyAssociationStore.GetAssociation(Uri, SecuritySettings)"/> method. + /// IRelyingPartyAssociationStore.GetAssociation method. /// </returns> public static Association Deserialize(string handle, DateTime expiresUtc, byte[] privateData) { Contract.Requires<ArgumentNullException>(!String.IsNullOrEmpty(handle)); diff --git a/src/DotNetOpenAuth.OpenId/OpenId/ChannelElements/IOpenIdExtensionFactory.cs b/src/DotNetOpenAuth.OpenId/OpenId/ChannelElements/IOpenIdExtensionFactory.cs index 31223a0..0c8d95e 100644 --- a/src/DotNetOpenAuth.OpenId/OpenId/ChannelElements/IOpenIdExtensionFactory.cs +++ b/src/DotNetOpenAuth.OpenId/OpenId/ChannelElements/IOpenIdExtensionFactory.cs @@ -14,8 +14,8 @@ namespace DotNetOpenAuth.OpenId.ChannelElements { /// </summary> /// <remarks> /// OpenID extension factories must be registered with the library. This can be - /// done by adding a factory to <see cref="OpenIdRelyingParty.ExtensionFactories"/> - /// or <see cref="OpenIdProvider.ExtensionFactories"/>, or by adding a snippet + /// done by adding a factory to OpenIdRelyingParty.ExtensionFactories + /// or OpenIdProvider.ExtensionFactories, or by adding a snippet /// such as the following to your web.config file: /// <example> /// <dotNetOpenAuth> diff --git a/src/DotNetOpenAuth.OpenId/OpenId/Messages/AssociateUnencryptedRequest.cs b/src/DotNetOpenAuth.OpenId/OpenId/Messages/AssociateUnencryptedRequest.cs index b180ceb..78a912c 100644 --- a/src/DotNetOpenAuth.OpenId/OpenId/Messages/AssociateUnencryptedRequest.cs +++ b/src/DotNetOpenAuth.OpenId/OpenId/Messages/AssociateUnencryptedRequest.cs @@ -55,7 +55,7 @@ namespace DotNetOpenAuth.OpenId.Messages { /// </returns> /// <remarks> /// <para>If an association can be successfully created, the - /// <see cref="AssociateSuccessfulResponse.CreateAssociation"/> method must not be + /// AssociateSuccessfulResponse.CreateAssociation method must not be /// called by this method.</para> /// <para>Successful association response messages will derive from <see cref="AssociateSuccessfulResponse"/>. /// Failed association response messages will derive from <see cref="AssociateUnsuccessfulResponse"/>.</para> diff --git a/src/DotNetOpenAuth.OpenId/OpenId/OpenIdUtilities.cs b/src/DotNetOpenAuth.OpenId/OpenId/OpenIdUtilities.cs index f6a65eb..95b3427 100644 --- a/src/DotNetOpenAuth.OpenId/OpenId/OpenIdUtilities.cs +++ b/src/DotNetOpenAuth.OpenId/OpenId/OpenIdUtilities.cs @@ -153,8 +153,8 @@ namespace DotNetOpenAuth.OpenId { /// <returns>The list of factories that will be used to generate extension instances.</returns> /// <remarks> /// This is an extension method on <see cref="Channel"/> rather than an instance - /// method on <see cref="OpenIdChannel"/> because the <see cref="OpenIdRelyingParty"/> - /// and <see cref="OpenIdProvider"/> classes don't strong-type to <see cref="OpenIdChannel"/> + /// method on <see cref="OpenIdChannel"/> because the OpenIdRelyingParty + /// and OpenIdProvider classes don't strong-type to <see cref="OpenIdChannel"/> /// to allow flexibility in the specific type of channel the user (or tests) /// can plug in. /// </remarks> diff --git a/src/DotNetOpenAuth.OpenId/OpenId/Provider/IAuthenticationRequest.cs b/src/DotNetOpenAuth.OpenId/OpenId/Provider/IAuthenticationRequest.cs index 40ccf45..4942397 100644 --- a/src/DotNetOpenAuth.OpenId/OpenId/Provider/IAuthenticationRequest.cs +++ b/src/DotNetOpenAuth.OpenId/OpenId/Provider/IAuthenticationRequest.cs @@ -260,7 +260,7 @@ namespace DotNetOpenAuth.OpenId.Provider { /// Gets or sets the security settings that apply to this request. /// </summary> /// <value> - /// Defaults to the <see cref="OpenIdProvider.SecuritySettings"/> on the <see cref="OpenIdProvider"/>. + /// Defaults to the OpenIdProvider.SecuritySettings on the OpenIdProvider. /// </value> ProviderSecuritySettings IRequest.SecuritySettings { get { diff --git a/src/DotNetOpenAuth.OpenId/OpenId/Provider/IHostProcessedRequest.cs b/src/DotNetOpenAuth.OpenId/OpenId/Provider/IHostProcessedRequest.cs index 0006e9c..4064ef1 100644 --- a/src/DotNetOpenAuth.OpenId/OpenId/Provider/IHostProcessedRequest.cs +++ b/src/DotNetOpenAuth.OpenId/OpenId/Provider/IHostProcessedRequest.cs @@ -119,7 +119,7 @@ namespace DotNetOpenAuth.OpenId.Provider { /// Gets or sets the security settings that apply to this request. /// </summary> /// <value> - /// Defaults to the <see cref="OpenIdProvider.SecuritySettings"/> on the <see cref="OpenIdProvider"/>. + /// Defaults to the OpenIdProvider.SecuritySettings on the OpenIdProvider. /// </value> ProviderSecuritySettings IRequest.SecuritySettings { get { throw new NotImplementedException(); } diff --git a/src/DotNetOpenAuth.OpenId/OpenId/Provider/IRequest.cs b/src/DotNetOpenAuth.OpenId/OpenId/Provider/IRequest.cs index c231fa3..1cb1a4b 100644 --- a/src/DotNetOpenAuth.OpenId/OpenId/Provider/IRequest.cs +++ b/src/DotNetOpenAuth.OpenId/OpenId/Provider/IRequest.cs @@ -35,7 +35,7 @@ namespace DotNetOpenAuth.OpenId.Provider { /// <summary> /// Gets or sets the security settings that apply to this request. /// </summary> - /// <value>Defaults to the <see cref="OpenIdProvider.SecuritySettings"/> on the <see cref="OpenIdProvider"/>.</value> + /// <value>Defaults to the OpenIdProvider.SecuritySettings on the OpenIdProvider.</value> ProviderSecuritySettings SecuritySettings { get; set; } /// <summary> @@ -85,9 +85,7 @@ namespace DotNetOpenAuth.OpenId.Provider { /// <summary> /// Gets or sets the security settings that apply to this request. /// </summary> - /// <value> - /// Defaults to the <see cref="OpenIdProvider.SecuritySettings"/> on the <see cref="OpenIdProvider"/>. - /// </value> + /// <value>Defaults to the OpenIdProvider.SecuritySettings on the OpenIdProvider.</value> ProviderSecuritySettings IRequest.SecuritySettings { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } diff --git a/src/DotNetOpenAuth.OpenId/OpenId/RelyingParty/AuthenticationStatus.cs b/src/DotNetOpenAuth.OpenId/OpenId/RelyingParty/AuthenticationStatus.cs index d9e5d0a..89eca78 100644 --- a/src/DotNetOpenAuth.OpenId/OpenId/RelyingParty/AuthenticationStatus.cs +++ b/src/DotNetOpenAuth.OpenId/OpenId/RelyingParty/AuthenticationStatus.cs @@ -24,7 +24,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { /// with a message stating that additional user agent interaction is required /// before authentication can be completed.</para> /// <para>Casting the <see cref="IAuthenticationResponse"/> to a - /// <see cref="ISetupRequiredAuthenticationResponse"/> in this case can help + /// ISetupRequiredAuthenticationResponse in this case can help /// you retry the authentication using setup (non-immediate) mode.</para> /// </summary> SetupRequired, diff --git a/src/DotNetOpenAuth.OpenId/OpenId/RelyingParty/IAuthenticationRequest.cs b/src/DotNetOpenAuth.OpenId/OpenId/RelyingParty/IAuthenticationRequest.cs index 65db0bd..fa58b7d 100644 --- a/src/DotNetOpenAuth.OpenId/OpenId/RelyingParty/IAuthenticationRequest.cs +++ b/src/DotNetOpenAuth.OpenId/OpenId/RelyingParty/IAuthenticationRequest.cs @@ -79,7 +79,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { /// to know that its user is over 21 years old, or perhaps a member of some organization. /// OpenID extensions can provide this, without any need for asserting the identity of the user.</para> /// <para>Constructing an OpenID request for only extensions can be done by calling - /// <see cref="OpenIdRelyingParty.CreateRequest(Identifier)"/> with any valid OpenID identifier + /// OpenIdRelyingParty.CreateRequest with any valid OpenID identifier /// (claimed identifier or OP identifier). But once this property is set to <c>true</c>, /// the claimed identifier value in the request is not included in the transmitted message.</para> /// <para>It is anticipated that an RP would only issue these types of requests to OPs that |