//-----------------------------------------------------------------------
//
// Copyright (c) Outercurve Foundation. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OpenId.Provider {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
///
/// Instances of this interface represent incoming extension-only requests.
/// This interface provides the details of the request and allows setting
/// the response.
///
public interface IAnonymousRequest : IHostProcessedRequest {
///
/// Gets or sets a value indicating whether the user approved sending any data to the relying party.
///
/// true if approved; otherwise, false.
bool? IsApproved { get; set; }
}
}