AspNet.Security.OpenId.OpenIdAuthenticationMessage.GetParameter C# (CSharp) Method

GetParameter() public method

Gets the parameter corresponding to the requested name and the default prefix or null if no appropriate parameter can be found.
public GetParameter ( [ name ) : string
name [ The parameter to retrieve.
return string
        public string GetParameter([NotNull] string name) {
            return GetParameter(OpenIdAuthenticationConstants.Prefixes.OpenId, name);
        }

Same methods

OpenIdAuthenticationMessage::GetParameter ( [ prefix, [ name ) : string