Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / TerminateSequence.cs / 1 / TerminateSequence.cs
//---------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------------------- namespace System.ServiceModel.Channels { using System; using System.ServiceModel; using System.ServiceModel.Diagnostics; using System.Xml; using System.Xml.Schema; using System.Xml.Serialization; sealed class TerminateSequence : BodyWriter { UniqueId identifier; Int64 lastMsgNumber; ReliableMessagingVersion reliableMessagingVersion; public TerminateSequence() : base(true) { } public TerminateSequence(ReliableMessagingVersion reliableMessagingVersion, UniqueId identifier, Int64 last) : base(true) { this.reliableMessagingVersion = reliableMessagingVersion; this.identifier = identifier; this.lastMsgNumber = last; } public static TerminateSequenceInfo Create(ReliableMessagingVersion reliableMessagingVersion, XmlDictionaryReader reader) { if (reader == null) { DiagnosticUtility.DebugAssert("Argument reader cannot be null."); } TerminateSequenceInfo terminateSequenceInfo = new TerminateSequenceInfo(); WsrmFeb2005Dictionary wsrmFeb2005Dictionary = XD.WsrmFeb2005Dictionary; XmlDictionaryString wsrmNs = WsrmIndex.GetNamespace(reliableMessagingVersion); reader.ReadStartElement(wsrmFeb2005Dictionary.TerminateSequence, wsrmNs); reader.ReadStartElement(wsrmFeb2005Dictionary.Identifier, wsrmNs); terminateSequenceInfo.Identifier = reader.ReadContentAsUniqueId(); reader.ReadEndElement(); if (reliableMessagingVersion == ReliableMessagingVersion.WSReliableMessaging11) { if (reader.IsStartElement(DXD.Wsrm11Dictionary.LastMsgNumber, wsrmNs)) { reader.ReadStartElement(); terminateSequenceInfo.LastMsgNumber = WsrmUtilities.ReadSequenceNumber(reader, false); reader.ReadEndElement(); } } while (reader.IsStartElement()) { reader.Skip(); } reader.ReadEndElement(); return terminateSequenceInfo; } protected override void OnWriteBodyContents(XmlDictionaryWriter writer) { WsrmFeb2005Dictionary wsrmFeb2005Dictionary = XD.WsrmFeb2005Dictionary; XmlDictionaryString wsrmNs = WsrmIndex.GetNamespace(this.reliableMessagingVersion); writer.WriteStartElement(wsrmFeb2005Dictionary.TerminateSequence, wsrmNs); writer.WriteStartElement(wsrmFeb2005Dictionary.Identifier, wsrmNs); writer.WriteValue(this.identifier); writer.WriteEndElement(); if (this.reliableMessagingVersion == ReliableMessagingVersion.WSReliableMessaging11) { if (this.lastMsgNumber > 0) { writer.WriteStartElement(DXD.Wsrm11Dictionary.LastMsgNumber, wsrmNs); writer.WriteValue(this.lastMsgNumber); writer.WriteEndElement(); } } writer.WriteEndElement(); } } } // 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
- FormViewDeleteEventArgs.cs
- KerberosTicketHashIdentifierClause.cs
- FlowLayoutSettings.cs
- RoleGroup.cs
- ForceCopyBuildProvider.cs
- OleDbSchemaGuid.cs
- ProgressChangedEventArgs.cs
- GridViewSelectEventArgs.cs
- EtwTrace.cs
- HttpHeaderCollection.cs
- SafeNativeMethods.cs
- CodeTypeMemberCollection.cs
- DeclarativeExpressionConditionDeclaration.cs
- _SslStream.cs
- CommandPlan.cs
- Sorting.cs
- ListBoxChrome.cs
- XPathDocument.cs
- CompilerInfo.cs
- ProxyGenerator.cs
- Error.cs
- Timer.cs
- GeometryDrawing.cs
- DataGridTablesFactory.cs
- ToolStripOverflowButton.cs
- ConfigurationManager.cs
- ServiceDescription.cs
- BitmapMetadataEnumerator.cs
- ManagementQuery.cs
- FormsAuthenticationEventArgs.cs
- ProgressBarAutomationPeer.cs
- ResetableIterator.cs
- NameObjectCollectionBase.cs
- RelationshipSet.cs
- SimpleFileLog.cs
- SByteStorage.cs
- ModelItemDictionary.cs
- AtomServiceDocumentSerializer.cs
- SqlLiftIndependentRowExpressions.cs
- TempEnvironment.cs
- Events.cs
- MultilineStringEditor.cs
- DocumentOrderQuery.cs
- DataGridCommandEventArgs.cs
- SiteMapDataSourceView.cs
- FixedHyperLink.cs
- FileClassifier.cs
- OleDbParameterCollection.cs
- PolicyImporterElement.cs
- SqlBuilder.cs
- SqlUDTStorage.cs
- StrokeNodeOperations2.cs
- AtomContentProperty.cs
- ProfessionalColors.cs
- CompensatableSequenceActivity.cs
- TreeNodeConverter.cs
- RoutedUICommand.cs
- PromptBuilder.cs
- ActiveDocumentEvent.cs
- UTF32Encoding.cs
- RequestCachePolicy.cs
- BlurBitmapEffect.cs
- AutomationElementIdentifiers.cs
- MetadataCacheItem.cs
- UrlMappingsModule.cs
- ComplexBindingPropertiesAttribute.cs
- DiscoveryReferences.cs
- Vector3D.cs
- Config.cs
- RuleSettings.cs
- Policy.cs
- HeaderUtility.cs
- LeafCellTreeNode.cs
- MatrixCamera.cs
- GenericAuthenticationEventArgs.cs
- AuthorizationRule.cs
- CompilerInfo.cs
- DelegateBodyWriter.cs
- IListConverters.cs
- Utils.cs
- NamespaceQuery.cs
- TimeoutValidationAttribute.cs
- DoubleLink.cs
- IPEndPoint.cs
- Accessible.cs
- DynamicQueryableWrapper.cs
- DictionaryItemsCollection.cs
- QueryContinueDragEvent.cs
- GroupDescription.cs
- StoreAnnotationsMap.cs
- AutoResetEvent.cs
- DataRow.cs
- FieldDescriptor.cs
- SiblingIterators.cs
- PolyQuadraticBezierSegment.cs
- RegexCaptureCollection.cs
- TreeViewHitTestInfo.cs
- WebDisplayNameAttribute.cs
- SerializerDescriptor.cs
- ScrollViewer.cs