Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeMemberEvent.cs / 1305376 / CodeMemberEvent.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeMemberEvent : CodeTypeMember { private CodeTypeReference type; private CodeTypeReference privateImplements = null; private CodeTypeReferenceCollection implementationTypes = null; ////// Represents an event member. /// ////// public CodeMemberEvent() { } ///[To be supplied.] ////// public CodeTypeReference Type { get { if (type == null) { type = new CodeTypeReference(""); } return type; } set { type = value; } } ////// Gets or sets the member field type. /// ////// public CodeTypeReference PrivateImplementationType { get { return privateImplements; } set { privateImplements = value; } } ///[To be supplied.] ////// public CodeTypeReferenceCollection ImplementationTypes { get { if (implementationTypes == null) { implementationTypes = new CodeTypeReferenceCollection(); } return implementationTypes; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SoapAttributeOverrides.cs
- TextEditorThreadLocalStore.cs
- UnsafeNativeMethodsCLR.cs
- IListConverters.cs
- PersonalizationProviderCollection.cs
- OperatorExpressions.cs
- WebPartTransformer.cs
- Setter.cs
- FileLevelControlBuilderAttribute.cs
- ErrorStyle.cs
- _HeaderInfoTable.cs
- InvalidPropValue.cs
- DataGridViewControlCollection.cs
- MemberInfoSerializationHolder.cs
- ProjectedSlot.cs
- StoreContentChangedEventArgs.cs
- RadioButtonFlatAdapter.cs
- NameValueFileSectionHandler.cs
- CorePropertiesFilter.cs
- InvokeWebServiceDesigner.cs
- EdmError.cs
- BaseParser.cs
- Latin1Encoding.cs
- SizeLimitedCache.cs
- LiteralTextParser.cs
- PerformanceCounterPermissionEntryCollection.cs
- ObjectResult.cs
- FrameworkElementFactory.cs
- BindingGroup.cs
- FormViewPagerRow.cs
- ListViewAutomationPeer.cs
- MonitoringDescriptionAttribute.cs
- XmlSchemaSet.cs
- DeferredReference.cs
- DLinqDataModelProvider.cs
- PathSegment.cs
- ResourceReferenceExpressionConverter.cs
- ParameterModifier.cs
- ElementHostAutomationPeer.cs
- QueryMatcher.cs
- ValidationRule.cs
- CmsInterop.cs
- SqlWriter.cs
- ControlAdapter.cs
- MetafileHeaderWmf.cs
- XamlUtilities.cs
- WebPartDescription.cs
- XmlElementAttributes.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- DropShadowBitmapEffect.cs
- NetworkInformationPermission.cs
- AccessibleObject.cs
- AdornerHitTestResult.cs
- BamlRecordWriter.cs
- GridViewCellAutomationPeer.cs
- SplashScreenNativeMethods.cs
- CodeVariableDeclarationStatement.cs
- SocketManager.cs
- XPathDocument.cs
- LocatorManager.cs
- ExeConfigurationFileMap.cs
- VersionedStreamOwner.cs
- WebPartTransformerAttribute.cs
- HttpHandlerActionCollection.cs
- AxHostDesigner.cs
- TextTreePropertyUndoUnit.cs
- TrackBarRenderer.cs
- GeometryDrawing.cs
- SessionStateUtil.cs
- AttachedPropertyBrowsableAttribute.cs
- CqlIdentifiers.cs
- MSHTMLHostUtil.cs
- DaylightTime.cs
- LinqDataSourceEditData.cs
- FilterEventArgs.cs
- ObjectViewListener.cs
- FormViewUpdateEventArgs.cs
- ButtonPopupAdapter.cs
- RootProfilePropertySettingsCollection.cs
- DefaultSerializationProviderAttribute.cs
- Highlights.cs
- figurelength.cs
- PeerTransportListenAddressConverter.cs
- StylusShape.cs
- ThicknessKeyFrameCollection.cs
- ThumbButtonInfoCollection.cs
- FrameworkElement.cs
- Range.cs
- AssociationTypeEmitter.cs
- SpellCheck.cs
- TreeIterator.cs
- ItemDragEvent.cs
- MetadataUtilsSmi.cs
- PauseStoryboard.cs
- HandlerFactoryCache.cs
- RichTextBox.cs
- Shape.cs
- ClientEventManager.cs
- XmlBuffer.cs
- ResourceWriter.cs