Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / MsmqReceiveParameters.cs / 1 / MsmqReceiveParameters.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Channels { abstract class MsmqReceiveParameters { MsmqUri.IAddressTranslator addressTranslator; bool durable; bool exactlyOnce; int maxRetryCycles; ReceiveErrorHandling receiveErrorHandling; int receiveRetryCount; TimeSpan retryCycleDelay; MsmqTransportSecurity transportSecurity; bool useMsmqTracing; bool useSourceJournal; internal MsmqReceiveParameters(MsmqBindingElementBase bindingElement) : this(bindingElement, bindingElement.AddressTranslator) {} internal MsmqReceiveParameters(MsmqBindingElementBase bindingElement, MsmqUri.IAddressTranslator addressTranslator) { this.addressTranslator = addressTranslator; this.durable = bindingElement.Durable; this.exactlyOnce = bindingElement.ExactlyOnce; this.maxRetryCycles = bindingElement.MaxRetryCycles; this.receiveErrorHandling = bindingElement.ReceiveErrorHandling; this.receiveRetryCount = bindingElement.ReceiveRetryCount; this.retryCycleDelay = bindingElement.RetryCycleDelay; this.transportSecurity = new MsmqTransportSecurity(bindingElement.MsmqTransportSecurity); this.useMsmqTracing = bindingElement.UseMsmqTracing; this.useSourceJournal = bindingElement.UseSourceJournal; } internal MsmqUri.IAddressTranslator AddressTranslator { get { return this.addressTranslator; } } internal bool Durable { get { return this.durable; } } internal bool ExactlyOnce { get { return this.exactlyOnce; } } internal int ReceiveRetryCount { get { return this.receiveRetryCount; } } internal int MaxRetryCycles { get { return this.maxRetryCycles; } } internal ReceiveErrorHandling ReceiveErrorHandling { get { return this.receiveErrorHandling; } } internal TimeSpan RetryCycleDelay { get { return this.retryCycleDelay; } } internal MsmqTransportSecurity TransportSecurity { get { return this.transportSecurity; } } internal bool UseMsmqTracing { get { return this.useMsmqTracing; } } internal bool UseSourceJournal { get { return this.useSourceJournal; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SQLMoneyStorage.cs
- TextEditorTyping.cs
- PolyQuadraticBezierSegment.cs
- HttpStreamMessage.cs
- DataControlFieldCollection.cs
- NativeActivityFaultContext.cs
- TextInfo.cs
- _TimerThread.cs
- StringValueSerializer.cs
- ObjectStateManager.cs
- GridItem.cs
- SpellerError.cs
- ClientConfigurationHost.cs
- OracleSqlParser.cs
- DebugInfo.cs
- CurrencyManager.cs
- ContextBase.cs
- Menu.cs
- MemberExpression.cs
- TransformProviderWrapper.cs
- SectionInput.cs
- MobileComponentEditorPage.cs
- LightweightCodeGenerator.cs
- SapiRecognizer.cs
- FormViewPageEventArgs.cs
- Trigger.cs
- SendMessageChannelCache.cs
- UrlAuthFailedErrorFormatter.cs
- User.cs
- NonParentingControl.cs
- HtmlTernaryTree.cs
- MenuItem.cs
- LassoSelectionBehavior.cs
- Vector3DAnimationBase.cs
- NumberAction.cs
- RecognizerStateChangedEventArgs.cs
- Control.cs
- FileLogRecord.cs
- SupportsPreviewControlAttribute.cs
- ControllableStoryboardAction.cs
- MenuTracker.cs
- CustomValidator.cs
- OracleBFile.cs
- AxHost.cs
- SafeFileMappingHandle.cs
- ThreadInterruptedException.cs
- SafeCryptContextHandle.cs
- ModelPerspective.cs
- XmlSchemaObjectCollection.cs
- ToolStripPanelRenderEventArgs.cs
- AttributeProviderAttribute.cs
- TimelineClockCollection.cs
- DataBoundLiteralControl.cs
- CommonGetThemePartSize.cs
- SByteConverter.cs
- XmlEventCache.cs
- SafeFindHandle.cs
- EditModeSwitchButton.cs
- OrthographicCamera.cs
- MenuCommand.cs
- ProfileParameter.cs
- Encoder.cs
- AccessibleObject.cs
- InvokeProviderWrapper.cs
- FrameworkRichTextComposition.cs
- FormCollection.cs
- PrimitiveXmlSerializers.cs
- ActivityCodeDomReferenceService.cs
- PlaceHolder.cs
- DataKey.cs
- OdbcConnection.cs
- WmlMobileTextWriter.cs
- TimeSpanOrInfiniteValidator.cs
- HtmlInputRadioButton.cs
- TcpChannelHelper.cs
- MimeMapping.cs
- MemberRelationshipService.cs
- EventLogSession.cs
- XmlEnumAttribute.cs
- Pens.cs
- TextUtf8RawTextWriter.cs
- ProfileEventArgs.cs
- SoundPlayerAction.cs
- PolyQuadraticBezierSegment.cs
- CompensateDesigner.cs
- XamlVector3DCollectionSerializer.cs
- XamlToRtfWriter.cs
- FilteredXmlReader.cs
- CodeParameterDeclarationExpression.cs
- UserInitiatedRoutedEventPermission.cs
- Matrix.cs
- HierarchicalDataBoundControlAdapter.cs
- TrustLevelCollection.cs
- ChannelFactoryBase.cs
- TransformPattern.cs
- OperatingSystem.cs
- GradientStop.cs
- GenericAuthenticationEventArgs.cs
- BasicCellRelation.cs
- HwndPanningFeedback.cs