Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / TerminateSequenceResponse.cs / 1 / TerminateSequenceResponse.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 TerminateSequenceResponse : BodyWriter { UniqueId identifier; public TerminateSequenceResponse() : base(true) { } public TerminateSequenceResponse(UniqueId identifier) : base(true) { this.identifier = identifier; } public UniqueId Identifier { get { return this.identifier; } set { this.identifier = value; } } public static TerminateSequenceResponseInfo Create(XmlDictionaryReader reader) { if (reader == null) { DiagnosticUtility.DebugAssert("Argument reader cannot be null."); } TerminateSequenceResponseInfo terminateSequenceInfo = new TerminateSequenceResponseInfo(); XmlDictionaryString wsrmNs = WsrmIndex.GetNamespace(ReliableMessagingVersion.WSReliableMessaging11); reader.ReadStartElement(DXD.Wsrm11Dictionary.TerminateSequenceResponse, wsrmNs); reader.ReadStartElement(XD.WsrmFeb2005Dictionary.Identifier, wsrmNs); terminateSequenceInfo.Identifier = reader.ReadContentAsUniqueId(); reader.ReadEndElement(); while (reader.IsStartElement()) { reader.Skip(); } reader.ReadEndElement(); return terminateSequenceInfo; } protected override void OnWriteBodyContents(XmlDictionaryWriter writer) { XmlDictionaryString wsrmNs = WsrmIndex.GetNamespace(ReliableMessagingVersion.WSReliableMessaging11); writer.WriteStartElement(DXD.Wsrm11Dictionary.TerminateSequenceResponse, 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
- GeometryHitTestParameters.cs
- PlainXmlDeserializer.cs
- RadialGradientBrush.cs
- DatePickerTextBox.cs
- HitTestParameters3D.cs
- AsmxEndpointPickerExtension.cs
- WebPartsPersonalization.cs
- PropertyInfo.cs
- HTTPNotFoundHandler.cs
- Transactions.cs
- MouseCaptureWithinProperty.cs
- DetailsViewInsertedEventArgs.cs
- PointHitTestResult.cs
- ADMembershipUser.cs
- EpmHelper.cs
- DataGridPageChangedEventArgs.cs
- TreeNodeCollection.cs
- StreamInfo.cs
- assemblycache.cs
- AppDomain.cs
- ResourcesGenerator.cs
- SystemMulticastIPAddressInformation.cs
- ReachFixedPageSerializerAsync.cs
- ReadOnlyDictionary.cs
- MSHTMLHost.cs
- mactripleDES.cs
- FileRecordSequenceCompletedAsyncResult.cs
- SqlMethods.cs
- DiffuseMaterial.cs
- ListBox.cs
- ToolbarAUtomationPeer.cs
- DataObjectPastingEventArgs.cs
- Vector3DAnimation.cs
- SrgsDocumentParser.cs
- TreeChangeInfo.cs
- TemplatePropertyEntry.cs
- ClockController.cs
- graph.cs
- SslStream.cs
- HttpBufferlessInputStream.cs
- ToolStripManager.cs
- BamlLocalizer.cs
- ConfigPathUtility.cs
- CfgParser.cs
- ExtensibleClassFactory.cs
- DispatchWrapper.cs
- MdiWindowListStrip.cs
- ContentPresenter.cs
- WindowsUpDown.cs
- ListViewPagedDataSource.cs
- Rect3DConverter.cs
- HitTestWithGeometryDrawingContextWalker.cs
- ThreadStateException.cs
- CryptoHelper.cs
- PathSegment.cs
- DataControlCommands.cs
- UpdateProgress.cs
- DbDataRecord.cs
- SQLInt32Storage.cs
- RuntimeUtils.cs
- _NegoState.cs
- ListViewHitTestInfo.cs
- WorkflowMarkupSerializationException.cs
- X509ClientCertificateAuthentication.cs
- SoundPlayerAction.cs
- EntityConnectionStringBuilderItem.cs
- Byte.cs
- TextEditorDragDrop.cs
- TraceHandlerErrorFormatter.cs
- LiteralTextContainerControlBuilder.cs
- DataTemplate.cs
- SafeEventLogReadHandle.cs
- ProxyWebPart.cs
- FormsAuthentication.cs
- DefaultTraceListener.cs
- SqlDataReaderSmi.cs
- WorkflowServiceAttributesTypeConverter.cs
- WebRequestModuleElement.cs
- DynamicExpression.cs
- StrokeCollectionDefaultValueFactory.cs
- DbUpdateCommandTree.cs
- XmlWriter.cs
- BorderGapMaskConverter.cs
- GeneralTransform.cs
- MenuItem.cs
- ResourcePool.cs
- WindowsFont.cs
- BindableTemplateBuilder.cs
- DomainConstraint.cs
- SEHException.cs
- keycontainerpermission.cs
- DataGridTable.cs
- CompositeFontParser.cs
- ObjectListShowCommandsEventArgs.cs
- PropertyChange.cs
- SqlNotificationRequest.cs
- ForceCopyBuildProvider.cs
- ScrollPatternIdentifiers.cs
- UnsafeNativeMethods.cs
- StringKeyFrameCollection.cs