Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / CloseSequenceResponse.cs / 1 / CloseSequenceResponse.cs
//---------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------------------- namespace System.ServiceModel.Channels { using System.Xml; sealed class CloseSequenceResponse : BodyWriter { UniqueId identifier; public CloseSequenceResponse(UniqueId identifier) : base(true) { this.identifier = identifier; } public static CloseSequenceResponseInfo Create(XmlDictionaryReader reader) { if (reader == null) { DiagnosticUtility.DebugAssert("Argument reader cannot be null."); } CloseSequenceResponseInfo closeSequenceResponseInfo = new CloseSequenceResponseInfo(); XmlDictionaryString wsrmNs = WsrmIndex.GetNamespace(ReliableMessagingVersion.WSReliableMessaging11); reader.ReadStartElement(DXD.Wsrm11Dictionary.CloseSequenceResponse, wsrmNs); reader.ReadStartElement(XD.WsrmFeb2005Dictionary.Identifier, wsrmNs); closeSequenceResponseInfo.Identifier = reader.ReadContentAsUniqueId(); reader.ReadEndElement(); while (reader.IsStartElement()) { reader.Skip(); } reader.ReadEndElement(); return closeSequenceResponseInfo; } protected override void OnWriteBodyContents(XmlDictionaryWriter writer) { XmlDictionaryString wsrmNs = WsrmIndex.GetNamespace(ReliableMessagingVersion.WSReliableMessaging11); writer.WriteStartElement(DXD.Wsrm11Dictionary.CloseSequenceResponse, wsrmNs); writer.WriteStartElement(XD.WsrmFeb2005Dictionary.Identifier, wsrmNs); writer.WriteValue(this.identifier); 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
- RoleGroup.cs
- lengthconverter.cs
- KeyedCollection.cs
- TrustLevelCollection.cs
- CodeGroup.cs
- BamlStream.cs
- SharedPersonalizationStateInfo.cs
- TextServicesManager.cs
- ControlParameter.cs
- OdbcTransaction.cs
- SocketElement.cs
- EntityDataSource.cs
- SqlDataSourceTableQuery.cs
- PauseStoryboard.cs
- QilSortKey.cs
- DeviceContext.cs
- RequestUriProcessor.cs
- DisplayToken.cs
- CompositeKey.cs
- IndexingContentUnit.cs
- ECDiffieHellman.cs
- EventRoute.cs
- AdornerPresentationContext.cs
- unitconverter.cs
- WsiProfilesElement.cs
- Span.cs
- isolationinterop.cs
- XomlCompilerResults.cs
- CodeIdentifiers.cs
- ListBindingHelper.cs
- RequestCachingSection.cs
- VisualBrush.cs
- HyperLinkColumn.cs
- CellTreeSimplifier.cs
- WebPartManagerInternals.cs
- FastEncoder.cs
- TableFieldsEditor.cs
- webeventbuffer.cs
- AttachInfo.cs
- Command.cs
- MatrixCamera.cs
- SevenBitStream.cs
- BufferCache.cs
- DataGridViewRowStateChangedEventArgs.cs
- TypeResolvingOptionsAttribute.cs
- Decorator.cs
- EntitySqlException.cs
- RowSpanVector.cs
- FrameworkContentElement.cs
- Quack.cs
- DateTimeFormat.cs
- Signature.cs
- ContextDataSource.cs
- CodeSnippetExpression.cs
- CodeTypeDelegate.cs
- HttpCookiesSection.cs
- IERequestCache.cs
- ContainerUIElement3D.cs
- EncryptedReference.cs
- DefaultMemberAttribute.cs
- XmlAttributeAttribute.cs
- PrefixHandle.cs
- Typography.cs
- CancelRequestedQuery.cs
- Transform3D.cs
- Item.cs
- SqlDataSourceCache.cs
- CodeAccessSecurityEngine.cs
- TreeBuilderBamlTranslator.cs
- ThemeDirectoryCompiler.cs
- autovalidator.cs
- ImageAnimator.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- WebPartConnectionsCancelVerb.cs
- BufferedGraphics.cs
- DrawListViewColumnHeaderEventArgs.cs
- ImmutableCollection.cs
- OverflowException.cs
- IConvertible.cs
- QueryCacheManager.cs
- Exceptions.cs
- MemberAccessException.cs
- RoutedEventValueSerializer.cs
- Size.cs
- CodeDirectionExpression.cs
- JsonStringDataContract.cs
- ProtocolInformationReader.cs
- DoubleLinkListEnumerator.cs
- WebDescriptionAttribute.cs
- SqlDataSourceSelectingEventArgs.cs
- MD5Cng.cs
- ConversionContext.cs
- RequestResponse.cs
- TextDecorationCollection.cs
- DoubleAnimationClockResource.cs
- IxmlLineInfo.cs
- TreeViewItemAutomationPeer.cs
- DefaultValueTypeConverter.cs
- GenericTypeParameterBuilder.cs
- DispatcherTimer.cs