Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeMemberEvent.cs / 1 / CodeMemberEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ////// [ 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; } } } }[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlBaseWriter.cs
- ValidateNames.cs
- newinstructionaction.cs
- ExpressionVisitor.cs
- Lasso.cs
- MultiSelectRootGridEntry.cs
- SelectionListDesigner.cs
- ResourceSet.cs
- ZipIOExtraFieldPaddingElement.cs
- EndpointIdentity.cs
- XmlDesignerDataSourceView.cs
- CookieParameter.cs
- SqlTrackingService.cs
- Utils.cs
- KnownIds.cs
- CompareValidator.cs
- CheckBoxPopupAdapter.cs
- RoleGroupCollection.cs
- SerializationInfo.cs
- FillErrorEventArgs.cs
- ScriptManagerProxy.cs
- Thread.cs
- SafeReversePInvokeHandle.cs
- FilterableAttribute.cs
- HyperLink.cs
- CacheHelper.cs
- StrongNameIdentityPermission.cs
- ArrayList.cs
- GenericRootAutomationPeer.cs
- StreamHelper.cs
- StoryFragments.cs
- DataSourceHelper.cs
- MatrixTransform3D.cs
- ContainerAction.cs
- ViewStateException.cs
- Win32Native.cs
- DataBoundControlActionList.cs
- ScrollableControlDesigner.cs
- AspProxy.cs
- RegistrationServices.cs
- ButtonFieldBase.cs
- DataSourceXmlSerializationAttribute.cs
- DataTableExtensions.cs
- CheckBoxField.cs
- Msec.cs
- CodeCompiler.cs
- Empty.cs
- ClientCultureInfo.cs
- log.cs
- SqlNotificationRequest.cs
- BaseServiceProvider.cs
- ResXFileRef.cs
- DbConnectionPoolGroupProviderInfo.cs
- SigningCredentials.cs
- TextMessageEncodingElement.cs
- ColorTranslator.cs
- DynamicRouteExpression.cs
- PriorityChain.cs
- RequestCachingSection.cs
- DataRowChangeEvent.cs
- NonClientArea.cs
- HwndSourceParameters.cs
- WorkflowShape.cs
- Margins.cs
- ControlBuilderAttribute.cs
- ToolStripSystemRenderer.cs
- ServiceOperationInvoker.cs
- WebPartConnectVerb.cs
- TerminatorSinks.cs
- Expr.cs
- ScriptManager.cs
- ToolBarOverflowPanel.cs
- ObjectItemConventionAssemblyLoader.cs
- SortFieldComparer.cs
- CachingHintValidation.cs
- BamlResourceDeserializer.cs
- LoginStatusDesigner.cs
- DtrList.cs
- ContentDisposition.cs
- MultipartIdentifier.cs
- EntityTypeEmitter.cs
- ToolStripItemTextRenderEventArgs.cs
- altserialization.cs
- KeyInfo.cs
- BrowserCapabilitiesFactory.cs
- keycontainerpermission.cs
- X509PeerCertificateElement.cs
- PolyLineSegmentFigureLogic.cs
- SmtpCommands.cs
- Flowchart.cs
- ExtensionQuery.cs
- DefaultIfEmptyQueryOperator.cs
- ToolStripScrollButton.cs
- SystemWebSectionGroup.cs
- ImageDesigner.cs
- PowerModeChangedEventArgs.cs
- MemoryFailPoint.cs
- LinqTreeNodeEvaluator.cs
- EditorOptionAttribute.cs
- TypeSystem.cs