CreateFormatter() static private method

Creates a serializer/deserializer for this type.
static private CreateFormatter ( IAuthorizationServer authorizationServer ) : IDataBagFormatter
authorizationServer IAuthorizationServer The authorization server that will be serializing/deserializing this authorization code. Must not be null.
return IDataBagFormatter
        /// <summary>
        /// Prepares a message for sending based on the rules of this channel binding element.
        /// </summary>
        /// <param name="message">The message to prepare for sending.</param>
        /// <param name="cancellationToken">The cancellation token.</param>
        /// <returns>
        /// The protections (if any) that this binding element applied to the message.
        /// Null if this binding element did not even apply to this binding element.
        /// </returns>
        /// <remarks>
        /// Implementations that provide message protection must honor the
        /// <see cref="MessagePartAttribute.RequiredProtection"/> properties where applicable.
        /// </remarks>
        public override Task <MessageProtections?> ProcessOutgoingMessageAsync(IProtocolMessage message, CancellationToken cancellationToken)
        {
            var directResponse = message as IDirectResponseProtocolMessage;
            var request        = directResponse != null ? directResponse.OriginatingRequest as IAccessTokenRequestInternal : null;

            // Serialize the authorization code, if there is one.
            var authCodeCarrier = message as IAuthorizationCodeCarryingRequest;

            if (authCodeCarrier != null)
            {
                var codeFormatter = AuthorizationCode.CreateFormatter(this.AuthorizationServer);
                var code          = authCodeCarrier.AuthorizationDescription;
                authCodeCarrier.Code = codeFormatter.Serialize(code);
                return(MessageProtectionTasks.None);
            }

            // Serialize the refresh token, if applicable.
            var refreshTokenResponse = message as AccessTokenSuccessResponse;

            if (refreshTokenResponse != null && refreshTokenResponse.HasRefreshToken)
            {
                var refreshTokenCarrier   = (IAuthorizationCarryingRequest)message;
                var refreshToken          = new RefreshToken(refreshTokenCarrier.AuthorizationDescription);
                var refreshTokenFormatter = RefreshToken.CreateFormatter(this.AuthorizationServer.CryptoKeyStore);
                refreshTokenResponse.RefreshToken = refreshTokenFormatter.Serialize(refreshToken);
            }

            // Serialize the access token, if applicable.
            var accessTokenResponse = message as IAccessTokenIssuingResponse;

            if (accessTokenResponse != null && accessTokenResponse.AuthorizationDescription != null)
            {
                ErrorUtilities.VerifyInternal(request != null, "We should always have a direct request message for this case.");
                accessTokenResponse.AccessToken = accessTokenResponse.AuthorizationDescription.Serialize();
            }

            return(MessageProtectionTasks.Null);
        }
        public override Task <MessageProtections?> ProcessIncomingMessageAsync(IProtocolMessage message, CancellationToken cancellationToken)
        {
            var authCodeCarrier = message as IAuthorizationCodeCarryingRequest;

            if (authCodeCarrier != null)
            {
                var authorizationCodeFormatter = AuthorizationCode.CreateFormatter(this.AuthorizationServer);
                var authorizationCode          = new AuthorizationCode();
                authorizationCodeFormatter.Deserialize(authorizationCode, authCodeCarrier.Code, message, Protocol.code);
                authCodeCarrier.AuthorizationDescription = authorizationCode;
            }

            var refreshTokenCarrier = message as IRefreshTokenCarryingRequest;

            if (refreshTokenCarrier != null)
            {
                var refreshTokenFormatter = RefreshToken.CreateFormatter(this.AuthorizationServer.CryptoKeyStore);
                var refreshToken          = new RefreshToken();
                refreshTokenFormatter.Deserialize(refreshToken, refreshTokenCarrier.RefreshToken, message, Protocol.refresh_token);
                refreshTokenCarrier.AuthorizationDescription = refreshToken;
            }

            return(MessageProtectionTasks.Null);
        }