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
- FacetDescription.cs
- SortDescriptionCollection.cs
- DataChangedEventManager.cs
- IERequestCache.cs
- CatchDesigner.xaml.cs
- HwndSourceKeyboardInputSite.cs
- SQLInt32Storage.cs
- DescriptionAttribute.cs
- QilLiteral.cs
- ReliableInputConnection.cs
- UnsafeNativeMethods.cs
- WebServiceParameterData.cs
- RuntimeArgumentHandle.cs
- KeyValuePairs.cs
- StructuredProperty.cs
- FixedSOMTable.cs
- SourceElementsCollection.cs
- EntityContainerEmitter.cs
- HealthMonitoringSectionHelper.cs
- BufferBuilder.cs
- PersonalizationDictionary.cs
- FullTextState.cs
- DataGridViewMethods.cs
- TypeLoadException.cs
- SerializationUtilities.cs
- Command.cs
- MobileContainerDesigner.cs
- JsonWriter.cs
- XsltInput.cs
- DataGridViewCheckBoxColumn.cs
- ComPlusTraceRecord.cs
- TextChange.cs
- PerfService.cs
- ExtentCqlBlock.cs
- safelinkcollection.cs
- HtmlTableRow.cs
- CommandID.cs
- webeventbuffer.cs
- XmlElementAttribute.cs
- OutputCacheProfile.cs
- GregorianCalendarHelper.cs
- RoleBoolean.cs
- ShapeTypeface.cs
- Accessible.cs
- CopyOnWriteList.cs
- SafeLibraryHandle.cs
- Scripts.cs
- ContextMenuService.cs
- AutomationElementIdentifiers.cs
- XPathNodeIterator.cs
- PropertyEmitter.cs
- TraceContextEventArgs.cs
- ToolboxItem.cs
- Viewport2DVisual3D.cs
- XmlSchemaObjectTable.cs
- XmlILIndex.cs
- FixedTextView.cs
- NumberFunctions.cs
- InternalConfigSettingsFactory.cs
- CustomAttribute.cs
- RegexFCD.cs
- XhtmlTextWriter.cs
- ConstructorExpr.cs
- UnmanagedBitmapWrapper.cs
- ToolZone.cs
- FlowDocument.cs
- XD.cs
- ResizeBehavior.cs
- IntranetCredentialPolicy.cs
- ExpandSegment.cs
- PropertyTabChangedEvent.cs
- Rfc2898DeriveBytes.cs
- Deflater.cs
- KnownTypesProvider.cs
- PatternMatcher.cs
- EditorPartCollection.cs
- FlowLayoutPanel.cs
- ArraySubsetEnumerator.cs
- QueryStringParameter.cs
- TimestampInformation.cs
- CompiledRegexRunner.cs
- TrackBar.cs
- OdbcConnectionPoolProviderInfo.cs
- InvalidComObjectException.cs
- WebRequest.cs
- coordinatorfactory.cs
- ToolStripSplitStackLayout.cs
- DoubleLink.cs
- BackgroundFormatInfo.cs
- DiffuseMaterial.cs
- DataGridViewRowCancelEventArgs.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- StructuralComparisons.cs
- SystemResourceKey.cs
- CachedTypeface.cs
- ConfigViewGenerator.cs
- ClipboardData.cs
- ValidationSummaryDesigner.cs
- WindowsTab.cs
- XPathPatternParser.cs