Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.ServiceModel.Routing / System / ServiceModel / Routing / SendOperation.cs / 1305376 / SendOperation.cs
//---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------- namespace System.ServiceModel.Routing { using System; using System.Collections.Generic; using System.ServiceModel.Channels; using System.ServiceModel.Description; using System.Transactions; using System.Runtime; using System.Configuration; class SendOperation { ListendpointTraits; int currentIndex; bool sent; Dictionary exceptions; OperationContext operationContext; Type routerContract; public SendOperation(IEnumerable endpoints, Type routerContract, OperationContext operationContext) { this.operationContext = operationContext; this.routerContract = routerContract; this.endpointTraits = new List (); foreach (ServiceEndpoint endpoint in endpoints) { this.endpointTraits.Add(new RoutingEndpointTrait(routerContract, endpoint, operationContext)); } if (this.endpointTraits.Count == 0) { throw FxTrace.Exception.AsError(new ConfigurationErrorsException(SR.BackupListEmpty)); } } public RoutingEndpointTrait CurrentEndpoint { get { Fx.Assert(this.currentIndex < this.endpointTraits.Count, "CurrentEndpoint should not be accessed after TryMoveToAlternate returned false!"); RoutingEndpointTrait trait = this.endpointTraits[this.currentIndex]; return trait; } } public bool HasAlternate { get { return this.currentIndex < (this.endpointTraits.Count - 1); } } public bool Sent { get { return this.sent; } } public void PrepareMessage(Message message) { if (this.exceptions != null) { message.Properties["Exceptions"] = this.exceptions; } } public void TransmitSucceeded(Transaction sendTransaction) { if (sendTransaction == null) { this.sent = true; } } public bool TryMoveToAlternate(Exception exception) { if (this.exceptions == null) { this.exceptions = new Dictionary (); } this.exceptions[this.CurrentEndpoint.Endpoint.Name] = exception; this.sent = false; if (++this.currentIndex < this.endpointTraits.Count) { return true; } return false; } } } // 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
- WebPartConnectionsDisconnectVerb.cs
- ValidatedControlConverter.cs
- GeometryConverter.cs
- TextSegment.cs
- Variable.cs
- WebExceptionStatus.cs
- UrlPropertyAttribute.cs
- XhtmlTextWriter.cs
- HtmlPanelAdapter.cs
- HttpWriter.cs
- UdpDiscoveryMessageFilter.cs
- DefaultCommandConverter.cs
- ObjectViewEntityCollectionData.cs
- PropertyEmitterBase.cs
- RegistrationServices.cs
- DbProviderSpecificTypePropertyAttribute.cs
- XamlFigureLengthSerializer.cs
- PackagePart.cs
- CachedRequestParams.cs
- DisposableCollectionWrapper.cs
- CmsUtils.cs
- XamlSerializer.cs
- OleTxTransactionInfo.cs
- ContentPlaceHolder.cs
- BinHexEncoder.cs
- PrivilegedConfigurationManager.cs
- StateDesigner.cs
- PartitionResolver.cs
- XPathNodeList.cs
- WebEvents.cs
- xmlfixedPageInfo.cs
- RegisteredScript.cs
- ComplexType.cs
- ProtocolElementCollection.cs
- DataGridState.cs
- SQLInt64Storage.cs
- WindowsServiceCredential.cs
- MappingMetadataHelper.cs
- SmiContextFactory.cs
- Timeline.cs
- HttpListenerPrefixCollection.cs
- MissingMethodException.cs
- ParenthesizePropertyNameAttribute.cs
- FloaterParaClient.cs
- DataGridViewRowPostPaintEventArgs.cs
- XmlQueryRuntime.cs
- PixelFormatConverter.cs
- ConditionValidator.cs
- CounterSample.cs
- WorkflowQueueInfo.cs
- ProviderIncompatibleException.cs
- SmiMetaDataProperty.cs
- Graph.cs
- InternalConfigEventArgs.cs
- UserNamePasswordValidator.cs
- CodeParameterDeclarationExpressionCollection.cs
- XmlSerializationGeneratedCode.cs
- SimpleFieldTemplateUserControl.cs
- CodeValidator.cs
- ShaderEffect.cs
- ContextMenuAutomationPeer.cs
- BooleanProjectedSlot.cs
- MarkupCompilePass2.cs
- GridView.cs
- FrameworkContentElement.cs
- DecoderBestFitFallback.cs
- StateDesigner.TransitionInfo.cs
- OleDbInfoMessageEvent.cs
- DependencyPropertyKey.cs
- CharacterString.cs
- AssertFilter.cs
- Util.cs
- SQLDateTimeStorage.cs
- EntityDataSourceQueryBuilder.cs
- InfoCardProofToken.cs
- MaterialGroup.cs
- TranslateTransform3D.cs
- Model3DGroup.cs
- HandlerFactoryCache.cs
- RepeatBehaviorConverter.cs
- XamlClipboardData.cs
- ConnectionPoint.cs
- WebZone.cs
- ControlAdapter.cs
- ProxyGenerator.cs
- BitmapEffectDrawingContextWalker.cs
- PasswordTextNavigator.cs
- RepeaterItem.cs
- ProviderException.cs
- AlgoModule.cs
- SmiMetaData.cs
- dataSvcMapFileLoader.cs
- SqlCacheDependencyDatabaseCollection.cs
- XmlFormatReaderGenerator.cs
- QueryOutputWriter.cs
- RowsCopiedEventArgs.cs
- DataObjectFieldAttribute.cs
- CodeNamespaceImportCollection.cs
- WhitespaceReader.cs
- MessagePartSpecification.cs