Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.Activities / System / Activities / OverloadGroupAttribute.cs / 1305376 / OverloadGroupAttribute.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Activities { using System; using System.Diagnostics.CodeAnalysis; using System.Runtime; [SuppressMessage(FxCop.Category.Design, FxCop.Rule.DefineAccessorsForAttributeArguments, Justification = "The setter is needed to enable XAML serialization of the attribute object.")] [AttributeUsage(AttributeTargets.Property, AllowMultiple = true)] public sealed class OverloadGroupAttribute : Attribute { string groupName; public OverloadGroupAttribute() { } public OverloadGroupAttribute(string groupName) { if (string.IsNullOrEmpty(groupName)) { throw FxTrace.Exception.ArgumentNullOrEmpty("groupName"); } this.groupName = groupName; } public string GroupName { get { return this.groupName; } set { if (string.IsNullOrEmpty(value)) { throw FxTrace.Exception.ArgumentNullOrEmpty("value"); } this.groupName = value; } } public override object TypeId { get { return this; } } } } // 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
- RangeValuePatternIdentifiers.cs
- SamlAttributeStatement.cs
- TextCompositionEventArgs.cs
- XmlUtf8RawTextWriter.cs
- SocketPermission.cs
- WriteableBitmap.cs
- CreateUserWizardAutoFormat.cs
- FieldDescriptor.cs
- SHA512Managed.cs
- DataGridViewColumnCollection.cs
- streamingZipPartStream.cs
- SpellerHighlightLayer.cs
- IntegerCollectionEditor.cs
- ProfileSettings.cs
- DebugTracing.cs
- XmlIncludeAttribute.cs
- HtmlSelect.cs
- GridViewRow.cs
- ResourceReferenceExpressionConverter.cs
- CultureSpecificStringDictionary.cs
- XmlSchemaComplexContent.cs
- TextElementCollection.cs
- SqlRowUpdatingEvent.cs
- webeventbuffer.cs
- ISAPIApplicationHost.cs
- DataGridViewHeaderCell.cs
- DSASignatureFormatter.cs
- HostingEnvironmentException.cs
- Calendar.cs
- ObjectStateFormatter.cs
- CheckBoxFlatAdapter.cs
- RemoteArgument.cs
- ControlPropertyNameConverter.cs
- ToolStripLocationCancelEventArgs.cs
- GZipUtils.cs
- EdmComplexTypeAttribute.cs
- ChannelPoolSettings.cs
- UriScheme.cs
- XmlStringTable.cs
- DiagnosticsConfiguration.cs
- Themes.cs
- NameValuePair.cs
- HttpRequestWrapper.cs
- SafeLocalMemHandle.cs
- StringUtil.cs
- SqlConnectionManager.cs
- FrameworkElementAutomationPeer.cs
- DispatcherTimer.cs
- AspNetCompatibilityRequirementsAttribute.cs
- AgileSafeNativeMemoryHandle.cs
- DebugViewWriter.cs
- NamedPipeTransportBindingElement.cs
- IsolatedStoragePermission.cs
- HideDisabledControlAdapter.cs
- FieldNameLookup.cs
- XmlSchemaDocumentation.cs
- PhysicalOps.cs
- ResourceType.cs
- SecurityPolicySection.cs
- DataListCommandEventArgs.cs
- TaiwanCalendar.cs
- ObjectStateManagerMetadata.cs
- TextTreeTextBlock.cs
- AuthenticationConfig.cs
- TextShapeableCharacters.cs
- FieldMetadata.cs
- IResourceProvider.cs
- RuntimeArgumentHandle.cs
- XmlSchemaInferenceException.cs
- ScopelessEnumAttribute.cs
- Binding.cs
- StylusSystemGestureEventArgs.cs
- AutomationPeer.cs
- TransformGroup.cs
- SerTrace.cs
- QueryableDataSourceHelper.cs
- XhtmlBasicPageAdapter.cs
- SingleResultAttribute.cs
- ProfileEventArgs.cs
- XmlObjectSerializerReadContextComplexJson.cs
- BaseValidatorDesigner.cs
- PersistNameAttribute.cs
- ContainerAction.cs
- LinkUtilities.cs
- Parsers.cs
- WizardPanel.cs
- BitmapScalingModeValidation.cs
- WhitespaceRule.cs
- COAUTHIDENTITY.cs
- TagMapCollection.cs
- WindowsListViewSubItem.cs
- ListCollectionView.cs
- HostUtils.cs
- EventHandlersStore.cs
- BitmapSource.cs
- DataGridViewCheckBoxCell.cs
- VariableElement.cs
- CompilerGlobalScopeAttribute.cs
- CharacterMetricsDictionary.cs
- BinHexEncoder.cs