Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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;
///
///
/// Represents an event member.
///
///
[
ClassInterface(ClassInterfaceType.AutoDispatch),
ComVisible(true),
Serializable,
]
public class CodeMemberEvent : CodeTypeMember {
private CodeTypeReference type;
private CodeTypeReference privateImplements = null;
private CodeTypeReferenceCollection implementationTypes = null;
///
/// [To be supplied.]
///
public CodeMemberEvent() {
}
///
///
/// Gets or sets the member field type.
///
///
public CodeTypeReference Type {
get {
if (type == null) {
type = new CodeTypeReference("");
}
return type;
}
set {
type = value;
}
}
///
/// [To be supplied.]
///
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.
//------------------------------------------------------------------------------
//
// 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;
///
///
/// Represents an event member.
///
///
[
ClassInterface(ClassInterfaceType.AutoDispatch),
ComVisible(true),
Serializable,
]
public class CodeMemberEvent : CodeTypeMember {
private CodeTypeReference type;
private CodeTypeReference privateImplements = null;
private CodeTypeReferenceCollection implementationTypes = null;
///
/// [To be supplied.]
///
public CodeMemberEvent() {
}
///
///
/// Gets or sets the member field type.
///
///
public CodeTypeReference Type {
get {
if (type == null) {
type = new CodeTypeReference("");
}
return type;
}
set {
type = value;
}
}
///
/// [To be supplied.]
///
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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EventQueueState.cs
- Formatter.cs
- FileStream.cs
- SecureStringHasher.cs
- ClientBuildManagerCallback.cs
- TimersDescriptionAttribute.cs
- HtmlControlPersistable.cs
- userdatakeys.cs
- EventToken.cs
- ScriptBehaviorDescriptor.cs
- ToolStripPanel.cs
- ExecutionContext.cs
- SpecularMaterial.cs
- OneWayChannelFactory.cs
- DataTableReader.cs
- XPathPatternBuilder.cs
- XmlAttributeAttribute.cs
- Configuration.cs
- ProcessModelSection.cs
- ToolBar.cs
- DragDropManager.cs
- XmlArrayItemAttributes.cs
- EditCommandColumn.cs
- JavaScriptObjectDeserializer.cs
- BaseAsyncResult.cs
- InputProcessorProfiles.cs
- AsyncOperationManager.cs
- SerializationInfoEnumerator.cs
- VectorConverter.cs
- Attributes.cs
- ToolBar.cs
- RichTextBox.cs
- GregorianCalendar.cs
- XmlAttributeHolder.cs
- XmlDataDocument.cs
- InvalidComObjectException.cs
- ThreadStateException.cs
- ShaperBuffers.cs
- UserControl.cs
- FileDataSourceCache.cs
- NamespaceImport.cs
- BitmapEffectGroup.cs
- TrimSurroundingWhitespaceAttribute.cs
- RootBuilder.cs
- ICspAsymmetricAlgorithm.cs
- Random.cs
- ServiceReference.cs
- DocumentEventArgs.cs
- BoundColumn.cs
- DispatcherOperation.cs
- UniformGrid.cs
- PackageRelationshipCollection.cs
- SamlSubjectStatement.cs
- ProgressBar.cs
- Hex.cs
- CultureInfoConverter.cs
- TreeView.cs
- ProtocolsConfigurationHandler.cs
- SpeechSeg.cs
- BitmapInitialize.cs
- AddDataControlFieldDialog.cs
- BoundsDrawingContextWalker.cs
- SqlGatherProducedAliases.cs
- HuffmanTree.cs
- ModelItemExtensions.cs
- ObjectDataSourceChooseMethodsPanel.cs
- OdbcPermission.cs
- PreservationFileReader.cs
- KeyedCollection.cs
- DependencyPropertyAttribute.cs
- UIElement.cs
- FileDataSourceCache.cs
- TabControlCancelEvent.cs
- StoryFragments.cs
- DispatcherObject.cs
- PlatformNotSupportedException.cs
- WebPartConnection.cs
- GlobalizationSection.cs
- SafeMemoryMappedViewHandle.cs
- RootDesignerSerializerAttribute.cs
- NegotiationTokenAuthenticatorState.cs
- SystemInfo.cs
- HitTestWithGeometryDrawingContextWalker.cs
- SyndicationDeserializer.cs
- HtmlInputFile.cs
- BridgeDataRecord.cs
- GridViewCellAutomationPeer.cs
- ProfileService.cs
- WebPageTraceListener.cs
- PositiveTimeSpanValidatorAttribute.cs
- SHA384.cs
- EdmProperty.cs
- AssemblyInfo.cs
- ToolStripComboBox.cs
- ContainerFilterService.cs
- MarginCollapsingState.cs
- SqlOuterApplyReducer.cs
- X509ThumbprintKeyIdentifierClause.cs
- DataView.cs
- WindowVisualStateTracker.cs