Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / ComponentModel / Design / CommandID.cs / 1 / CommandID.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel.Design { using System; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] [System.Runtime.InteropServices.ComVisible(true)] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public class CommandID { private readonly Guid menuGroup; private readonly int commandID; ////// Represents a /// numeric Command ID and globally unique /// ID (GUID) menu identifier that together uniquely identify a command. /// ////// public CommandID(Guid menuGroup, int commandID) { this.menuGroup = menuGroup; this.commandID = commandID; } ////// Initializes a new instance of the ////// class. Creates a new command /// ID. /// /// public virtual int ID { get { return commandID; } } ////// Gets or sets the numeric command ID. /// ////// public override bool Equals(object obj) { if (!(obj is CommandID)) { return false; } CommandID cid = (CommandID)obj; return cid.menuGroup.Equals(menuGroup) && cid.commandID == commandID; } ////// Overrides Object's Equals method. /// ////// public override int GetHashCode() { return menuGroup.GetHashCode() << 2 | commandID; } ///[To be supplied.] ////// public virtual Guid Guid { get { return menuGroup; } } ////// Gets or sets the globally /// unique ID /// (GUID) of the menu group that the menu command this CommandID /// represents belongs to. /// ////// public override string ToString() { return menuGroup.ToString() + " : " + commandID.ToString(CultureInfo.CurrentCulture); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Overrides Object's ToString method. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel.Design { using System; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] [System.Runtime.InteropServices.ComVisible(true)] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public class CommandID { private readonly Guid menuGroup; private readonly int commandID; ////// Represents a /// numeric Command ID and globally unique /// ID (GUID) menu identifier that together uniquely identify a command. /// ////// public CommandID(Guid menuGroup, int commandID) { this.menuGroup = menuGroup; this.commandID = commandID; } ////// Initializes a new instance of the ////// class. Creates a new command /// ID. /// /// public virtual int ID { get { return commandID; } } ////// Gets or sets the numeric command ID. /// ////// public override bool Equals(object obj) { if (!(obj is CommandID)) { return false; } CommandID cid = (CommandID)obj; return cid.menuGroup.Equals(menuGroup) && cid.commandID == commandID; } ////// Overrides Object's Equals method. /// ////// public override int GetHashCode() { return menuGroup.GetHashCode() << 2 | commandID; } ///[To be supplied.] ////// public virtual Guid Guid { get { return menuGroup; } } ////// Gets or sets the globally /// unique ID /// (GUID) of the menu group that the menu command this CommandID /// represents belongs to. /// ////// public override string ToString() { return menuGroup.ToString() + " : " + commandID.ToString(CultureInfo.CurrentCulture); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Overrides Object's ToString method. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlCodeExporter.cs
- RijndaelManagedTransform.cs
- DataRecordInternal.cs
- Activity.cs
- DurableDispatcherAddressingFault.cs
- ProfessionalColors.cs
- RangeValuePatternIdentifiers.cs
- BinaryObjectReader.cs
- GlyphInfoList.cs
- ConfigXmlElement.cs
- ParenthesizePropertyNameAttribute.cs
- WebErrorHandler.cs
- SearchForVirtualItemEventArgs.cs
- PolyBezierSegment.cs
- TextDecoration.cs
- MatchNoneMessageFilter.cs
- httpstaticobjectscollection.cs
- DependencyProperty.cs
- OracleEncoding.cs
- SerializerProvider.cs
- DbConnectionStringBuilder.cs
- IndexExpression.cs
- DataAdapter.cs
- LoginView.cs
- BooleanToVisibilityConverter.cs
- FixedDSBuilder.cs
- BlurBitmapEffect.cs
- SafeRsaProviderHandle.cs
- TextRenderer.cs
- FixedTextPointer.cs
- HwndAppCommandInputProvider.cs
- NavigationProgressEventArgs.cs
- CapabilitiesRule.cs
- SimpleHandlerFactory.cs
- BaseTemplateBuildProvider.cs
- ContextMenuStripActionList.cs
- PageParser.cs
- FileDialogCustomPlacesCollection.cs
- Image.cs
- AssemblyAttributesGoHere.cs
- XmlNamespaceMappingCollection.cs
- SqlDataSourceCustomCommandPanel.cs
- BoundingRectTracker.cs
- XPathNavigator.cs
- CriticalHandle.cs
- HtmlInputHidden.cs
- Ipv6Element.cs
- SvcMapFile.cs
- ClassImporter.cs
- ImmutableCollection.cs
- ButtonFlatAdapter.cs
- DrawListViewItemEventArgs.cs
- TransformProviderWrapper.cs
- WebPartExportVerb.cs
- FormatPage.cs
- XMLDiffLoader.cs
- PingReply.cs
- HtmlInputCheckBox.cs
- DockPatternIdentifiers.cs
- HttpContext.cs
- UIElementAutomationPeer.cs
- TextEditorLists.cs
- ComponentManagerBroker.cs
- ObjectFullSpanRewriter.cs
- HttpFileCollection.cs
- SerializationAttributes.cs
- XmlSchemaInclude.cs
- ToolStripPanel.cs
- HMACSHA384.cs
- ThreadStaticAttribute.cs
- ModuleBuilder.cs
- CompilerGeneratedAttribute.cs
- AvTrace.cs
- IDReferencePropertyAttribute.cs
- ScrollEvent.cs
- FileUpload.cs
- ExtentCqlBlock.cs
- SafePointer.cs
- AutoResizedEvent.cs
- Shape.cs
- Scheduling.cs
- UniqueTransportManagerRegistration.cs
- ListControlStringCollectionEditor.cs
- UserPersonalizationStateInfo.cs
- DesignerDataConnection.cs
- ViewSimplifier.cs
- X509ServiceCertificateAuthentication.cs
- ObjectDisposedException.cs
- TextOutput.cs
- FormsAuthenticationModule.cs
- HtmlShimManager.cs
- pingexception.cs
- DescendantBaseQuery.cs
- RectAnimationClockResource.cs
- Style.cs
- PageCatalogPart.cs
- ScrollViewer.cs
- FixedDocument.cs
- WebService.cs
- DbExpressionRules.cs