Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx35 / System.WorkflowServices / System / Workflow / Activities / WorkflowServiceAttributes.cs / 1305376 / WorkflowServiceAttributes.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.Workflow.Activities { using System; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using System.ServiceModel; using System.ServiceModel.Description; using System.Workflow.ComponentModel; using System.Workflow.ComponentModel.Serialization; [DesignerSerializer(typeof(WorkflowMarkupSerializer), typeof(WorkflowMarkupSerializer))] [DesignerSerializer(typeof(DependencyObjectCodeDomSerializer), typeof(CodeDomSerializer))] [TypeConverter(typeof(WorkflowServiceAttributesTypeConverter))] public sealed class WorkflowServiceAttributes : DependencyObject, IServiceDescriptionBuilder { private static readonly DependencyProperty AddressFilterModeProperty = DependencyProperty.Register("AddressFilterMode", typeof(AddressFilterMode), typeof(WorkflowServiceAttributes), new PropertyMetadata(AddressFilterMode.Exact, DependencyPropertyOptions.Metadata)); private static readonly DependencyProperty ConfigurationNameProperty = DependencyProperty.Register("ConfigurationName", typeof(string), typeof(WorkflowServiceAttributes), new PropertyMetadata(null, DependencyPropertyOptions.Metadata)); private static readonly DependencyProperty IgnoreExtensionDataObjectProperty = DependencyProperty.Register("IgnoreExtensionDataObject", typeof(bool), typeof(WorkflowServiceAttributes), new PropertyMetadata(false, DependencyPropertyOptions.Metadata)); private static readonly DependencyProperty IncludeExceptionDetailInFaultsProperty = DependencyProperty.Register("IncludeExceptionDetailInFaults", typeof(bool), typeof(WorkflowServiceAttributes), new PropertyMetadata(false, DependencyPropertyOptions.Metadata)); private static readonly DependencyProperty MaxItemsInObjectGraphProperty = DependencyProperty.Register("MaxItemsInObjectGraph", typeof(int), typeof(WorkflowServiceAttributes), new PropertyMetadata(65536, DependencyPropertyOptions.Metadata)); private static readonly DependencyProperty NameProperty = DependencyProperty.Register("Name", typeof(string), typeof(WorkflowServiceAttributes), new PropertyMetadata(null, DependencyPropertyOptions.Metadata)); private static readonly DependencyProperty NamespaceProperty = DependencyProperty.Register("Namespace", typeof(string), typeof(WorkflowServiceAttributes), new PropertyMetadata(null, DependencyPropertyOptions.Metadata)); private static readonly DependencyProperty UseSynchronizationContextProperty = DependencyProperty.Register("UseSynchronizationContext", typeof(bool), typeof(WorkflowServiceAttributes), new PropertyMetadata(true, DependencyPropertyOptions.Metadata)); private static readonly DependencyProperty ValidateMustUnderstandProperty = DependencyProperty.Register("ValidateMustUnderstand", typeof(bool), typeof(WorkflowServiceAttributes), new PropertyMetadata(true, DependencyPropertyOptions.Metadata)); public WorkflowServiceAttributes() { } [DefaultValue(AddressFilterMode.Exact)] public AddressFilterMode AddressFilterMode { get { return (AddressFilterMode) this.GetValue(WorkflowServiceAttributes.AddressFilterModeProperty); } set { this.SetValue(WorkflowServiceAttributes.AddressFilterModeProperty, value); } } [DefaultValue(null)] public string ConfigurationName { get { return (string) this.GetValue(WorkflowServiceAttributes.ConfigurationNameProperty); } set { this.SetValue(WorkflowServiceAttributes.ConfigurationNameProperty, value); } } [DefaultValue(false)] public bool IgnoreExtensionDataObject { get { return (bool) this.GetValue(WorkflowServiceAttributes.IgnoreExtensionDataObjectProperty); } set { this.SetValue(WorkflowServiceAttributes.IgnoreExtensionDataObjectProperty, value); } } [DefaultValue(false)] public bool IncludeExceptionDetailInFaults { get { return (bool) this.GetValue(WorkflowServiceAttributes.IncludeExceptionDetailInFaultsProperty); } set { this.SetValue(WorkflowServiceAttributes.IncludeExceptionDetailInFaultsProperty, value); } } [DefaultValue(65536)] public int MaxItemsInObjectGraph { get { return (int) this.GetValue(WorkflowServiceAttributes.MaxItemsInObjectGraphProperty); } set { this.SetValue(WorkflowServiceAttributes.MaxItemsInObjectGraphProperty, value); } } [DefaultValue(null)] public string Name { get { return (string) this.GetValue(WorkflowServiceAttributes.NameProperty); } set { this.SetValue(WorkflowServiceAttributes.NameProperty, value); } } [DefaultValue(null)] public string Namespace { get { return (string) this.GetValue(WorkflowServiceAttributes.NamespaceProperty); } set { this.SetValue(WorkflowServiceAttributes.NamespaceProperty, value); } } [DefaultValue(true)] public bool UseSynchronizationContext { get { return (bool) this.GetValue(WorkflowServiceAttributes.UseSynchronizationContextProperty); } set { this.SetValue(WorkflowServiceAttributes.UseSynchronizationContextProperty, value); } } [DefaultValue(true)] public bool ValidateMustUnderstand { get { return (bool) this.GetValue(WorkflowServiceAttributes.ValidateMustUnderstandProperty); } set { this.SetValue(WorkflowServiceAttributes.ValidateMustUnderstandProperty, value); } } void IServiceDescriptionBuilder.BuildServiceDescription(ServiceDescriptionContext context) { if (context == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("context"); } WorkflowServiceBehavior workflowServiceBehavior = context.ServiceDescription.Behaviors.Find(); if (workflowServiceBehavior == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR2.GetString(SR2.NoWorkflowServiceBehavior))); } workflowServiceBehavior.AddressFilterMode = this.AddressFilterMode; workflowServiceBehavior.IgnoreExtensionDataObject = this.IgnoreExtensionDataObject; workflowServiceBehavior.IncludeExceptionDetailInFaults = this.IncludeExceptionDetailInFaults; workflowServiceBehavior.MaxItemsInObjectGraph = this.MaxItemsInObjectGraph; workflowServiceBehavior.UseSynchronizationContext = this.UseSynchronizationContext; workflowServiceBehavior.ValidateMustUnderstand = this.ValidateMustUnderstand; if (!string.IsNullOrEmpty(this.ConfigurationName)) { workflowServiceBehavior.ConfigurationName = this.ConfigurationName; } if (!string.IsNullOrEmpty(this.Name)) { workflowServiceBehavior.Name = this.Name; } if (!string.IsNullOrEmpty(this.Namespace)) { workflowServiceBehavior.Namespace = this.Namespace; } } } } // 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
- LayoutEditorPart.cs
- State.cs
- XmlSchemaComplexContentExtension.cs
- VariableQuery.cs
- WebHttpBehavior.cs
- UserMapPath.cs
- X509Utils.cs
- ErrorRuntimeConfig.cs
- ELinqQueryState.cs
- State.cs
- NestedContainer.cs
- DataColumnPropertyDescriptor.cs
- IISMapPath.cs
- Rijndael.cs
- OptimizedTemplateContentHelper.cs
- SplitterEvent.cs
- SendMessageChannelCache.cs
- XPathChildIterator.cs
- AddInAttribute.cs
- TextTrailingCharacterEllipsis.cs
- RepeaterCommandEventArgs.cs
- TrustLevel.cs
- ProfileBuildProvider.cs
- TransactionChannelFactory.cs
- ToolStripItemEventArgs.cs
- ListView.cs
- DataGridViewTextBoxCell.cs
- Interlocked.cs
- FileDialog.cs
- RewritingSimplifier.cs
- Line.cs
- TdsRecordBufferSetter.cs
- Logging.cs
- TaiwanLunisolarCalendar.cs
- FrameworkElement.cs
- ScriptBehaviorDescriptor.cs
- SemaphoreSecurity.cs
- RegexWorker.cs
- DisplayInformation.cs
- SqlCrossApplyToCrossJoin.cs
- SuppressMessageAttribute.cs
- peersecurityelement.cs
- Authorization.cs
- _FtpDataStream.cs
- ColumnHeaderConverter.cs
- ProxyHwnd.cs
- CodeVariableReferenceExpression.cs
- CngAlgorithmGroup.cs
- MethodAccessException.cs
- tooltip.cs
- fixedPageContentExtractor.cs
- DataGridItemCollection.cs
- RIPEMD160Managed.cs
- Set.cs
- SynchronizedPool.cs
- X509ChainElement.cs
- ThrowOnMultipleAssignment.cs
- FtpWebResponse.cs
- OleDbPropertySetGuid.cs
- Animatable.cs
- OperationFormatter.cs
- XmlSchemaAttributeGroupRef.cs
- AttachmentService.cs
- XPathExpr.cs
- AssemblyInfo.cs
- ImageClickEventArgs.cs
- WebControlAdapter.cs
- DocumentPropertiesDialog.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- TextServicesCompartmentContext.cs
- MeshGeometry3D.cs
- ListViewHitTestInfo.cs
- Console.cs
- UIElementPropertyUndoUnit.cs
- CodePageEncoding.cs
- SecurityRuntime.cs
- StylusSystemGestureEventArgs.cs
- PeerName.cs
- XmlDataImplementation.cs
- GeneralTransform2DTo3DTo2D.cs
- ModuleBuilderData.cs
- LogLogRecord.cs
- MarshalDirectiveException.cs
- SerializationAttributes.cs
- XmlNamespaceDeclarationsAttribute.cs
- LocalBuilder.cs
- InternalsVisibleToAttribute.cs
- LoadWorkflowByKeyAsyncResult.cs
- AppDomainShutdownMonitor.cs
- TcpClientChannel.cs
- DataServiceQueryException.cs
- AdapterUtil.cs
- ReceiveActivity.cs
- SRef.cs
- TextTreeInsertUndoUnit.cs
- ExtractorMetadata.cs
- ControlTemplate.cs
- DocumentPageHost.cs
- TextPenaltyModule.cs
- WindowsUpDown.cs