Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.ServiceModel.Activities / System / ServiceModel / Activities / Tracking / Configuration / StateElement.cs / 1305376 / StateElement.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Activities.Tracking.Configuration { using System.Configuration; using System.Runtime; using System.Diagnostics.CodeAnalysis; [Fx.Tag.XamlVisible(false)] public class StateElement : TrackingConfigurationElement { ConfigurationPropertyCollection properties; protected override ConfigurationPropertyCollection Properties { get { if (this.properties == null) { ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); properties.Add(new ConfigurationProperty(TrackingConfigurationStrings.Name, typeof(System.String), "*", null, new System.Configuration.StringValidator(0, 2147483647, null), System.Configuration.ConfigurationPropertyOptions.IsKey)); this.properties = properties; } return this.properties; } } [SuppressMessage(FxCop.Category.Configuration, FxCop.Rule.ConfigurationPropertyAttributeRule, Justification = "This property is defined by the base class to compute unique key.")] public override object ElementKey { get { return this.Name; } } [ConfigurationProperty(TrackingConfigurationStrings.Name, IsKey = true, DefaultValue = TrackingConfigurationStrings.StarWildcard)] [SuppressMessage(FxCop.Category.Configuration, FxCop.Rule.ConfigurationValidatorAttributeRule, MessageId = "System.ServiceModel.Activities.Tracking.Configuration.StateElement.Name", Justification = "StringValidator verifies minimum size")] [StringValidator(MinLength = 0)] public string Name { get { return (string)base[TrackingConfigurationStrings.Name]; } set { base[TrackingConfigurationStrings.Name] = value; } } } } // 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
- AvTrace.cs
- TimeStampChecker.cs
- AssociationType.cs
- DataControlImageButton.cs
- SqlGenerator.cs
- InputGestureCollection.cs
- EditorZoneDesigner.cs
- XmlSchemaGroupRef.cs
- SafeArchiveContext.cs
- TileModeValidation.cs
- _KerberosClient.cs
- HealthMonitoringSectionHelper.cs
- PrimitiveSchema.cs
- SupportedAddressingMode.cs
- ContractNamespaceAttribute.cs
- ParentQuery.cs
- StylusPlugin.cs
- OrderedDictionaryStateHelper.cs
- ResourceDictionaryCollection.cs
- Style.cs
- Latin1Encoding.cs
- DoubleCollection.cs
- Function.cs
- CodePageEncoding.cs
- Attributes.cs
- Schema.cs
- NavigateEvent.cs
- CoreSwitches.cs
- NavigationPropertyAccessor.cs
- SByteConverter.cs
- FixedTextSelectionProcessor.cs
- InternalBase.cs
- PenCursorManager.cs
- EngineSiteSapi.cs
- LineSegment.cs
- ToolStripSeparator.cs
- WebPartTracker.cs
- OwnerDrawPropertyBag.cs
- DebugView.cs
- UnsafeNativeMethods.cs
- DesignSurfaceCollection.cs
- EastAsianLunisolarCalendar.cs
- TypedReference.cs
- EventMappingSettingsCollection.cs
- DataGridViewColumnCollectionEditor.cs
- VectorCollectionValueSerializer.cs
- UnitySerializationHolder.cs
- ContainerSelectorActiveEvent.cs
- CommentAction.cs
- MaskDescriptors.cs
- SchemaTableColumn.cs
- XpsSerializationException.cs
- TemplateInstanceAttribute.cs
- XmlRawWriter.cs
- D3DImage.cs
- SchemaImporterExtensionElementCollection.cs
- EventSinkHelperWriter.cs
- EncodedStreamFactory.cs
- NamespaceExpr.cs
- DateTimeOffsetStorage.cs
- TextLineResult.cs
- XsdCachingReader.cs
- SoapReflectionImporter.cs
- SeekableReadStream.cs
- RtfControlWordInfo.cs
- RoleManagerSection.cs
- SizeConverter.cs
- CaseInsensitiveOrdinalStringComparer.cs
- XhtmlBasicCalendarAdapter.cs
- OdbcStatementHandle.cs
- TableRow.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- SettingsPropertyNotFoundException.cs
- TemplatePartAttribute.cs
- ViewManager.cs
- LogLogRecordEnumerator.cs
- SystemIPv4InterfaceProperties.cs
- Renderer.cs
- XsltLoader.cs
- SqlServer2KCompatibilityAnnotation.cs
- RenderData.cs
- ReliableMessagingHelpers.cs
- TextStore.cs
- SchemaImporterExtension.cs
- WindowsAuthenticationModule.cs
- WindowsTooltip.cs
- GcSettings.cs
- EdmSchemaAttribute.cs
- HtmlElementErrorEventArgs.cs
- Util.cs
- NumberSubstitution.cs
- HandleCollector.cs
- AutomationElementCollection.cs
- UxThemeWrapper.cs
- MemberPath.cs
- XmlWrappingReader.cs
- GestureRecognizer.cs
- HtmlEmptyTagControlBuilder.cs
- WriteFileContext.cs
- CompoundFileStreamReference.cs