private bool IsValid()

in Runtime/Core/ApiGatewayManagement/ApiGateway.cs [32:44]


        private bool IsValid(ApiGatewayRequest request)
        {
            if (request == null
                || string.IsNullOrWhiteSpace(request.ApiGatewayEndpoint)
                || string.IsNullOrWhiteSpace(request.ClientId)
                || string.IsNullOrWhiteSpace(request.IdToken)
                || string.IsNullOrWhiteSpace(request.RefreshToken))
            {
                return false;
            }

            return true;
        }