blob: dbd227840857553a95003c0e6dc933ab80da0cae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
//-----------------------------------------------------------------------
// <copyright file="SuggestedStringsConverterContract.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.ComponentModel {
using System;
using System.Collections;
using System.ComponentModel.Design.Serialization;
using System.Diagnostics.Contracts;
using System.Linq;
using System.Reflection;
/// <summary>
/// Contract class for the <see cref="SuggestedStringsConverter"/> class.
/// </summary>
[ContractClassFor(typeof(SuggestedStringsConverter))]
internal abstract class SuggestedStringsConverterContract : SuggestedStringsConverter {
/// <summary>
/// Gets the type to reflect over for the well known values.
/// </summary>
protected override Type WellKnownValuesType {
get {
Contract.Ensures(Contract.Result<Type>() != null);
throw new NotImplementedException();
}
}
}
}
|