//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
/*
*/
namespace System.ComponentModel.Design {
using System.ComponentModel;
using System.Diagnostics;
using System;
///
/// Provides a generic dictionary service that a designer can use
/// to store user-defined data on the site.
///
public interface IDictionaryService {
///
///
/// Gets the key corresponding to the specified value.
///
///
object GetKey(object value);
///
///
/// Gets the value corresponding to the specified key.
///
///
object GetValue(object key);
///
///
/// Sets the specified key-value pair.
///
void SetValue(object key, object value);
}
}