Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.ServiceModel.Activities / System / ServiceModel / Activities / Configuration / WorkflowIdleElement.cs / 1305376 / WorkflowIdleElement.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Activities.Configuration { using System.ComponentModel; using System.Configuration; using System.Globalization; using System.Runtime; using System.ServiceModel.Activities.Description; using System.ServiceModel.Configuration; public sealed class WorkflowIdleElement : BehaviorExtensionElement { ConfigurationPropertyCollection properties; const string TimeToPersistString = "timeToPersist"; const string TimeToUnloadString = "timeToUnload"; public WorkflowIdleElement() { } [ConfigurationProperty(TimeToPersistString, DefaultValue = WorkflowIdleBehavior.defaultTimeToPersistString)] [TypeConverter(typeof(TimeSpanOrInfiniteConverter))] [ServiceModelTimeSpanValidator(MinValueString = ConfigurationStrings.TimeSpanZero)] public TimeSpan TimeToPersist { get { return (TimeSpan)base[TimeToPersistString]; } set { base[TimeToPersistString] = value; } } [ConfigurationProperty(TimeToUnloadString, DefaultValue = WorkflowIdleBehavior.defaultTimeToUnloadString)] [TypeConverter(typeof(TimeSpanOrInfiniteConverter))] [ServiceModelTimeSpanValidator(MinValueString = ConfigurationStrings.TimeSpanZero)] public TimeSpan TimeToUnload { get { return (TimeSpan)base[TimeToUnloadString]; } set { base[TimeToUnloadString] = value; } } protected internal override object CreateBehavior() { return new WorkflowIdleBehavior() { TimeToPersist = this.TimeToPersist, TimeToUnload = this.TimeToUnload }; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Configuration", "Configuration102:ConfigurationPropertyAttributeRule", MessageId = "System.ServiceModel.Activities.Configuration.WorkflowIdleElement.BehaviorType", Justification = "Not a configurable property; a property that had to be overridden from abstract parent class")] public override Type BehaviorType { get { return typeof(WorkflowIdleBehavior); } } protected override ConfigurationPropertyCollection Properties { get { if (this.properties == null) { ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); properties.Add(new ConfigurationProperty(TimeToPersistString, typeof(TimeSpan), TimeSpan.MaxValue, new TimeSpanOrInfiniteConverter(), new TimeSpanOrInfiniteValidator(TimeSpan.Zero, TimeSpan.MaxValue), ConfigurationPropertyOptions.None)); properties.Add(new ConfigurationProperty(TimeToUnloadString, typeof(TimeSpan), TimeSpan.Parse(WorkflowIdleBehavior.defaultTimeToUnloadString, CultureInfo.InvariantCulture), new TimeSpanOrInfiniteConverter(), new TimeSpanOrInfiniteValidator(TimeSpan.Zero, TimeSpan.MaxValue), ConfigurationPropertyOptions.None)); this.properties = properties; } return this.properties; } } } } // 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
- Reference.cs
- Model3D.cs
- ExpressionEditor.cs
- CheckoutException.cs
- FormViewInsertedEventArgs.cs
- SubqueryRules.cs
- ImmComposition.cs
- WmlPhoneCallAdapter.cs
- LoadedOrUnloadedOperation.cs
- TextEditorParagraphs.cs
- ExpressionVisitor.cs
- UiaCoreApi.cs
- Control.cs
- DesignerDataTable.cs
- CriticalExceptions.cs
- TransportSecurityBindingElement.cs
- CodeIdentifiers.cs
- EventBuilder.cs
- EncoderFallback.cs
- SolidColorBrush.cs
- UserPrincipalNameElement.cs
- HttpListenerPrefixCollection.cs
- Imaging.cs
- UrlAuthorizationModule.cs
- NonDualMessageSecurityOverHttp.cs
- DataGridTableCollection.cs
- WindowClosedEventArgs.cs
- XmlSchemaResource.cs
- DataViewSettingCollection.cs
- shaperfactoryquerycachekey.cs
- DataGridViewImageColumn.cs
- ProfileModule.cs
- Enum.cs
- BuildProvider.cs
- WindowPattern.cs
- ToolbarAUtomationPeer.cs
- XmlText.cs
- WorkflowPageSetupDialog.cs
- ObjectSpanRewriter.cs
- WebExceptionStatus.cs
- AppDomainAttributes.cs
- ToolStripLocationCancelEventArgs.cs
- IssuedTokenParametersEndpointAddressElement.cs
- MouseEventArgs.cs
- TimeZone.cs
- InputProcessorProfiles.cs
- GrammarBuilderRuleRef.cs
- TdsParserStateObject.cs
- NullableFloatMinMaxAggregationOperator.cs
- RayHitTestParameters.cs
- WindowInteropHelper.cs
- FileDetails.cs
- unsafenativemethodstextservices.cs
- XmlQualifiedName.cs
- Aggregates.cs
- MatcherBuilder.cs
- AtlasWeb.Designer.cs
- EncryptedKeyIdentifierClause.cs
- TableCell.cs
- InkCollectionBehavior.cs
- RadioButtonStandardAdapter.cs
- GridViewHeaderRowPresenter.cs
- WebPartCollection.cs
- SqlProcedureAttribute.cs
- GlobalizationSection.cs
- AuthenticationManager.cs
- BoundsDrawingContextWalker.cs
- ResolvedKeyFrameEntry.cs
- Normalization.cs
- SevenBitStream.cs
- XmlSignatureProperties.cs
- LoginName.cs
- Contracts.cs
- Types.cs
- EmptyStringExpandableObjectConverter.cs
- DbConnectionInternal.cs
- CqlIdentifiers.cs
- StringComparer.cs
- DocumentXmlWriter.cs
- SoapElementAttribute.cs
- DictionaryItemsCollection.cs
- WebResourceAttribute.cs
- FixedSOMPageConstructor.cs
- ToolStripDropDownMenu.cs
- WhitespaceRule.cs
- StateItem.cs
- CodeDirectionExpression.cs
- WindowsTokenRoleProvider.cs
- SHA384.cs
- SID.cs
- SecurityContextCookieSerializer.cs
- IIS7UserPrincipal.cs
- StyleTypedPropertyAttribute.cs
- HatchBrush.cs
- GeometryGroup.cs
- ITextView.cs
- DataGridBoolColumn.cs
- ConsumerConnectionPoint.cs
- CodeConstructor.cs
- Clock.cs