Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / AddIn / AddIn / System / Addin / Pipeline / AddInPipelineAttributes.cs / 1305376 / AddInPipelineAttributes.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Purpose: Pipeline Attributes for the AddIn model ** ===========================================================*/ using System; namespace System.AddIn.Pipeline { [AttributeUsage(AttributeTargets.Class)] public sealed class HostAdapterAttribute : Attribute { public HostAdapterAttribute() { } } [AttributeUsage(AttributeTargets.Class)] public sealed class AddInAdapterAttribute : Attribute { public AddInAdapterAttribute() { } } [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface)] public sealed class AddInBaseAttribute : Attribute { private Type[] _activatableAs; // note that in the reflection-only context code here won't execute [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays", Justification="Array size will be small")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Activatable")] public Type[] ActivatableAs { get { return _activatableAs; } set { _activatableAs = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ChtmlPageAdapter.cs
- RawMouseInputReport.cs
- figurelength.cs
- StrongNameKeyPair.cs
- StorageEntitySetMapping.cs
- TraceSection.cs
- DataSet.cs
- ServicePointManagerElement.cs
- Metadata.cs
- DesignerOptionService.cs
- FrugalList.cs
- DoubleLink.cs
- EntityDataSourceQueryBuilder.cs
- WebPartVerb.cs
- ThreadAttributes.cs
- ListControl.cs
- OracleLob.cs
- GPStream.cs
- UrlMappingsSection.cs
- ExceptionUtility.cs
- UTF32Encoding.cs
- LinqDataSourceSelectEventArgs.cs
- DbProviderServices.cs
- ASCIIEncoding.cs
- HttpHostedTransportConfiguration.cs
- ErrorProvider.cs
- CustomAttribute.cs
- Preprocessor.cs
- UIElementCollection.cs
- FileDialog_Vista_Interop.cs
- lengthconverter.cs
- PromptStyle.cs
- ThousandthOfEmRealDoubles.cs
- Bold.cs
- ContainerControlDesigner.cs
- GridViewRowCollection.cs
- PreservationFileWriter.cs
- XmlAttributeProperties.cs
- ProcessHost.cs
- IntersectQueryOperator.cs
- Rijndael.cs
- TemplateControlBuildProvider.cs
- InheritanceUI.cs
- RepeaterItem.cs
- WebUtil.cs
- QuaternionAnimation.cs
- Quad.cs
- ProviderSettings.cs
- Evaluator.cs
- CompilationUtil.cs
- DataGridCell.cs
- GeneralTransform.cs
- XXXOnTypeBuilderInstantiation.cs
- FilterElement.cs
- Decimal.cs
- PolicyLevel.cs
- SecurityCriticalDataForSet.cs
- DataGridAddNewRow.cs
- ConnectionPoolManager.cs
- ToolboxItemImageConverter.cs
- EntityDataSourceEntitySetNameItem.cs
- TagNameToTypeMapper.cs
- DataGridRowHeader.cs
- LineBreak.cs
- CqlGenerator.cs
- PageAsyncTaskManager.cs
- FixedSOMLineCollection.cs
- ETagAttribute.cs
- BufferedReceiveManager.cs
- RenderData.cs
- BrowserCapabilitiesCodeGenerator.cs
- DataBoundControl.cs
- MetadataArtifactLoaderResource.cs
- BitmapEffect.cs
- Expression.cs
- ReceiveActivityDesignerTheme.cs
- EntityDataSourceWrapperCollection.cs
- AttributeCollection.cs
- GeneralTransform3DGroup.cs
- CatalogPartChrome.cs
- DataGridViewRowConverter.cs
- SqlTrackingWorkflowInstance.cs
- ServiceManagerHandle.cs
- OleDbFactory.cs
- ToolStripDropDownClosingEventArgs.cs
- WorkflowClientDeliverMessageWrapper.cs
- HtmlInputImage.cs
- SvcMapFile.cs
- XmlQueryStaticData.cs
- FederatedMessageSecurityOverHttpElement.cs
- DBConcurrencyException.cs
- HttpWebResponse.cs
- TextRunProperties.cs
- ConfigurationLocation.cs
- XmlElement.cs
- HttpProtocolImporter.cs
- MonitorWrapper.cs
- DesignerRegionMouseEventArgs.cs
- XmlSignificantWhitespace.cs
- DrawingImage.cs