// // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. // using System.ComponentModel; namespace Microsoft.VisualStudio.Text.Utilities { /// /// Metadata which includes Content Types and Text View Roles /// public interface IDeferrableContentTypeAndTextViewRoleMetadata : IContentTypeAndTextViewRoleMetadata { /// /// Optional OptionId that controls creation of the extension. /// [DefaultValue(null)] string OptionName { get; } } }