//-----------------------------------------------------------------------
//
// Copyright (c) Andrew Arnott. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.ComponentModel {
using System;
using System.Diagnostics.Contracts;
using DotNetOpenAuth.InfoCard;
///
/// A design-time helper to give a Uri property an auto-complete functionality
/// listing the URIs in the class.
///
public class IssuersSuggestions : SuggestedStringsConverter {
///
/// Initializes a new instance of the class.
///
[Obsolete("This class is meant for design-time use within an IDE, and not meant to be used directly by runtime code.")]
public IssuersSuggestions() {
}
///
/// Gets the type to reflect over to extract the well known values.
///
[Pure]
protected override Type WellKnownValuesType {
get { return typeof(WellKnownIssuers); }
}
}
}