//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.ComponentModel { using System; /// /// Nested containers site objects using INestedSite. A nested /// site is simply a site with an additional property that can /// retrieve the full nested name of a component. /// public interface INestedSite : ISite { /// /// Returns the full name of the component in this site in the format /// of .. If this component's site has a null /// name, FullName also returns null. /// string FullName { get; } } }