Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / NetFx35 / System.ServiceModel.Web / System / ServiceModel / Syndication / TextSyndicationContent.cs / 1 / TextSyndicationContent.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Syndication { using System; using System.Collections.Generic; using System.Text; using System.Xml; using System.Xml.Schema; using System.Xml.Serialization; // NOTE: This class implements Clone so if you add any members, please update the copy ctor public class TextSyndicationContent : SyndicationContent { string text; TextSyndicationContentKind textKind; public TextSyndicationContent(string text) : this(text, TextSyndicationContentKind.Plaintext) { } public TextSyndicationContent(string text, TextSyndicationContentKind textKind) { if (!TextSyndicationContentKindHelper.IsDefined(textKind)) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("textKind")); } this.text = text; this.textKind = textKind; } protected TextSyndicationContent(TextSyndicationContent source) : base(source) { if (source == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("source"); } this.text = source.text; this.textKind = source.textKind; } public string Text { get { return this.text; } } public override string Type { get { switch (this.textKind) { case TextSyndicationContentKind.Html: return Atom10Constants.HtmlType; case TextSyndicationContentKind.XHtml: return Atom10Constants.XHtmlType; default: return Atom10Constants.PlaintextType; } } } public override SyndicationContent Clone() { return new TextSyndicationContent(this); } protected override void WriteContentsTo(XmlWriter writer) { string val = this.text ?? string.Empty; if (this.textKind == TextSyndicationContentKind.XHtml) { writer.WriteRaw(val); } else { writer.WriteString(val); } } } } // 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
- DataTableMappingCollection.cs
- TabPage.cs
- ImageAnimator.cs
- StylusEventArgs.cs
- PrintPreviewControl.cs
- CommonObjectSecurity.cs
- basenumberconverter.cs
- DataKey.cs
- EmptyStringExpandableObjectConverter.cs
- PropertyDescriptorGridEntry.cs
- DisplayInformation.cs
- InfoCardMasterKey.cs
- GZipUtils.cs
- MetadataCacheItem.cs
- ObjectComplexPropertyMapping.cs
- DataGridViewComboBoxCell.cs
- TableCellsCollectionEditor.cs
- ControlCommandSet.cs
- TextElement.cs
- ToolStripItemDataObject.cs
- IPPacketInformation.cs
- HtmlInputText.cs
- FileUpload.cs
- ReflectPropertyDescriptor.cs
- DataKeyArray.cs
- WebPartZoneCollection.cs
- Attributes.cs
- XsltContext.cs
- RuntimeConfig.cs
- SafeSecurityHelper.cs
- EntityReference.cs
- Application.cs
- CodeTypeDeclarationCollection.cs
- Parsers.cs
- WCFBuildProvider.cs
- Pair.cs
- ZipIOExtraFieldElement.cs
- TextUtf8RawTextWriter.cs
- Rss20ItemFormatter.cs
- ModelTreeEnumerator.cs
- WindowsListBox.cs
- ProviderCommandInfoUtils.cs
- RootBrowserWindowAutomationPeer.cs
- BinaryWriter.cs
- SqlCommandSet.cs
- ToggleButtonAutomationPeer.cs
- WebUtil.cs
- DiagnosticTraceSource.cs
- DataGridViewLinkColumn.cs
- MimeTypePropertyAttribute.cs
- TreeNodeStyleCollectionEditor.cs
- Inflater.cs
- AlphabetConverter.cs
- EdmItemCollection.cs
- InfoCardRSACryptoProvider.cs
- FlowPanelDesigner.cs
- AssociationTypeEmitter.cs
- HotSpot.cs
- XmlUrlResolver.cs
- SystemInformation.cs
- ViewStateModeByIdAttribute.cs
- Transform3DGroup.cs
- SafeNativeHandle.cs
- StubHelpers.cs
- DuplicateMessageDetector.cs
- EntityTransaction.cs
- PcmConverter.cs
- InvalidComObjectException.cs
- TemplateParser.cs
- _NestedSingleAsyncResult.cs
- RuntimeConfig.cs
- FlowDocumentPaginator.cs
- ConnectionsZoneDesigner.cs
- prefixendpointaddressmessagefilter.cs
- Constraint.cs
- RegularExpressionValidator.cs
- DataGridViewColumnCollection.cs
- StorageModelBuildProvider.cs
- HGlobalSafeHandle.cs
- TableCellsCollectionEditor.cs
- SocketInformation.cs
- MessageHeaderDescription.cs
- IgnoreSectionHandler.cs
- MetadataCache.cs
- SafeNativeMethods.cs
- ToolStripSeparatorRenderEventArgs.cs
- KerberosSecurityTokenProvider.cs
- BinHexDecoder.cs
- ContextMarshalException.cs
- AnimationLayer.cs
- Focus.cs
- KnownBoxes.cs
- WpfWebRequestHelper.cs
- SecureConversationServiceCredential.cs
- TagMapCollection.cs
- DecimalAnimation.cs
- StaticContext.cs
- Hash.cs
- MsmqIntegrationChannelListener.cs
- KeyboardEventArgs.cs