//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
/*
*/
namespace System.ComponentModel.Design {
using System.Globalization;
using System.Resources;
///
///
/// Provides designers a way to
/// access a resource for the current design-time
/// object.
///
public interface IResourceService {
///
///
/// Locates the resource reader for the specified culture and
/// returns it.
///
IResourceReader GetResourceReader(CultureInfo info);
///
/// Locates the resource writer for the specified culture
/// and returns it. This will create a new resource for
/// the specified culture and destroy any existing resource,
/// should it exist.
///
IResourceWriter GetResourceWriter(CultureInfo info);
}
}