Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / NetFx35 / System.ServiceModel.Web / System / ServiceModel / Syndication / SyndicationItemFormatter.cs / 1 / SyndicationItemFormatter.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Syndication { using System; using System.Collections.Generic; using System.Xml; using System.Runtime.Serialization; using System.Globalization; using System.Xml.Serialization; using System.Xml.Schema; using System.Diagnostics.CodeAnalysis; using DiagnosticUtility = System.ServiceModel.DiagnosticUtility; [DataContract] public abstract class SyndicationItemFormatter { SyndicationItem item; protected SyndicationItemFormatter() { this.item = null; } protected SyndicationItemFormatter(SyndicationItem itemToWrite) { if (itemToWrite == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("itemToWrite"); } this.item = itemToWrite; } public SyndicationItem Item { get { return this.item; } } public abstract String Version { get; } public abstract bool CanRead(XmlReader reader); public abstract void ReadFrom(XmlReader reader); public override string ToString() { return String.Format(CultureInfo.CurrentCulture, "{0}, SyndicationVersion={1}", this.GetType(), this.Version); } public abstract void WriteTo(XmlWriter writer); internal protected virtual void SetItem(SyndicationItem item) { if (item == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("item"); } this.item = item; } internal static void CreateBufferIfRequiredAndWriteNode(ref XmlBuffer buffer, ref XmlDictionaryWriter extWriter, XmlDictionaryReader reader, int maxExtensionSize) { SyndicationFeedFormatter.CreateBufferIfRequiredAndWriteNode(ref buffer, ref extWriter, reader, maxExtensionSize); } internal static SyndicationItem CreateItemInstance(Type itemType) { if (itemType.Equals(typeof(SyndicationItem))) { return new SyndicationItem(); } else { return (SyndicationItem) Activator.CreateInstance(itemType); } } internal static void LoadElementExtensions(XmlBuffer buffer, XmlDictionaryWriter writer, SyndicationItem item) { SyndicationFeedFormatter.LoadElementExtensions(buffer, writer, item); } internal static void LoadElementExtensions(XmlBuffer buffer, XmlDictionaryWriter writer, SyndicationCategory category) { SyndicationFeedFormatter.LoadElementExtensions(buffer, writer, category); } internal static void LoadElementExtensions(XmlBuffer buffer, XmlDictionaryWriter writer, SyndicationLink link) { SyndicationFeedFormatter.LoadElementExtensions(buffer, writer, link); } internal static void LoadElementExtensions(XmlBuffer buffer, XmlDictionaryWriter writer, SyndicationPerson person) { SyndicationFeedFormatter.LoadElementExtensions(buffer, writer, person); } protected static SyndicationCategory CreateCategory(SyndicationItem item) { return SyndicationFeedFormatter.CreateCategory(item); } protected static SyndicationLink CreateLink(SyndicationItem item) { return SyndicationFeedFormatter.CreateLink(item); } protected static SyndicationPerson CreatePerson(SyndicationItem item) { return SyndicationFeedFormatter.CreatePerson(item); } protected static void LoadElementExtensions(XmlReader reader, SyndicationItem item, int maxExtensionSize) { SyndicationFeedFormatter.LoadElementExtensions(reader, item, maxExtensionSize); } protected static void LoadElementExtensions(XmlReader reader, SyndicationCategory category, int maxExtensionSize) { SyndicationFeedFormatter.LoadElementExtensions(reader, category, maxExtensionSize); } protected static void LoadElementExtensions(XmlReader reader, SyndicationLink link, int maxExtensionSize) { SyndicationFeedFormatter.LoadElementExtensions(reader, link, maxExtensionSize); } protected static void LoadElementExtensions(XmlReader reader, SyndicationPerson person, int maxExtensionSize) { SyndicationFeedFormatter.LoadElementExtensions(reader, person, maxExtensionSize); } protected static bool TryParseAttribute(string name, string ns, string value, SyndicationItem item, string version) { return SyndicationFeedFormatter.TryParseAttribute(name, ns, value, item, version); } protected static bool TryParseAttribute(string name, string ns, string value, SyndicationCategory category, string version) { return SyndicationFeedFormatter.TryParseAttribute(name, ns, value, category, version); } protected static bool TryParseAttribute(string name, string ns, string value, SyndicationLink link, string version) { return SyndicationFeedFormatter.TryParseAttribute(name, ns, value, link, version); } protected static bool TryParseAttribute(string name, string ns, string value, SyndicationPerson person, string version) { return SyndicationFeedFormatter.TryParseAttribute(name, ns, value, person, version); } protected static bool TryParseContent(XmlReader reader, SyndicationItem item, string contentType, string version, out SyndicationContent content) { return SyndicationFeedFormatter.TryParseContent(reader, item, contentType, version, out content); } protected static bool TryParseElement(XmlReader reader, SyndicationItem item, string version) { return SyndicationFeedFormatter.TryParseElement(reader, item, version); } protected static bool TryParseElement(XmlReader reader, SyndicationCategory category, string version) { return SyndicationFeedFormatter.TryParseElement(reader, category, version); } protected static bool TryParseElement(XmlReader reader, SyndicationLink link, string version) { return SyndicationFeedFormatter.TryParseElement(reader, link, version); } protected static bool TryParseElement(XmlReader reader, SyndicationPerson person, string version) { return SyndicationFeedFormatter.TryParseElement(reader, person, version); } protected static void WriteAttributeExtensions(XmlWriter writer, SyndicationItem item, string version) { SyndicationFeedFormatter.WriteAttributeExtensions(writer, item, version); } protected static void WriteAttributeExtensions(XmlWriter writer, SyndicationCategory category, string version) { SyndicationFeedFormatter.WriteAttributeExtensions(writer, category, version); } protected static void WriteAttributeExtensions(XmlWriter writer, SyndicationLink link, string version) { SyndicationFeedFormatter.WriteAttributeExtensions(writer, link, version); } protected static void WriteAttributeExtensions(XmlWriter writer, SyndicationPerson person, string version) { SyndicationFeedFormatter.WriteAttributeExtensions(writer, person, version); } protected static void WriteElementExtensions(XmlWriter writer, SyndicationItem item, string version) { SyndicationFeedFormatter.WriteElementExtensions(writer, item, version); } protected abstract SyndicationItem CreateItemInstance(); protected void WriteElementExtensions(XmlWriter writer, SyndicationCategory category, string version) { SyndicationFeedFormatter.WriteElementExtensions(writer, category, version); } protected void WriteElementExtensions(XmlWriter writer, SyndicationLink link, string version) { SyndicationFeedFormatter.WriteElementExtensions(writer, link, version); } protected void WriteElementExtensions(XmlWriter writer, SyndicationPerson person, string version) { SyndicationFeedFormatter.WriteElementExtensions(writer, person, version); } } } // 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
- TextEditorThreadLocalStore.cs
- ListControl.cs
- StylusPointPropertyUnit.cs
- CompressionTransform.cs
- MoveSizeWinEventHandler.cs
- MimeTextImporter.cs
- WindowsEditBox.cs
- TransformationRules.cs
- EditorReuseAttribute.cs
- DragDeltaEventArgs.cs
- InkCanvas.cs
- AnnotationAdorner.cs
- ThreadPool.cs
- _UncName.cs
- ImageIndexConverter.cs
- TypeListConverter.cs
- CompModHelpers.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- SqlRowUpdatedEvent.cs
- NonceToken.cs
- AxParameterData.cs
- CommonDialog.cs
- Repeater.cs
- GenericNameHandler.cs
- DispatcherOperation.cs
- BindingWorker.cs
- cache.cs
- CustomWebEventKey.cs
- QilChoice.cs
- SmiConnection.cs
- SiteOfOriginPart.cs
- CapabilitiesSection.cs
- StorageFunctionMapping.cs
- DemultiplexingClientMessageFormatter.cs
- EnumerableCollectionView.cs
- EntityDataSourceMemberPath.cs
- RemotingConfiguration.cs
- SqlBulkCopy.cs
- KoreanLunisolarCalendar.cs
- WindowsGraphics2.cs
- StrokeFIndices.cs
- XmlHierarchicalDataSourceView.cs
- ErrorHandlerFaultInfo.cs
- VirtualDirectoryMappingCollection.cs
- SqlMethodAttribute.cs
- DesignTimeParseData.cs
- XmlSchemaGroupRef.cs
- CallSiteBinder.cs
- EntitySqlQueryState.cs
- AssemblySettingAttributes.cs
- FormConverter.cs
- SocketAddress.cs
- StorageConditionPropertyMapping.cs
- FlagsAttribute.cs
- DependencyPropertyHelper.cs
- DataColumnPropertyDescriptor.cs
- ArgumentOutOfRangeException.cs
- DtcInterfaces.cs
- TargetConverter.cs
- PropertyStore.cs
- DetailsViewRow.cs
- FixedSOMPage.cs
- DetailsViewInsertEventArgs.cs
- ReadOnlyDataSource.cs
- ScriptResourceAttribute.cs
- Convert.cs
- DebugTracing.cs
- XMLSyntaxException.cs
- SrgsGrammar.cs
- FileChangesMonitor.cs
- SqlDataSourceCommandEventArgs.cs
- Peer.cs
- DiscoveryMessageSequenceGenerator.cs
- TitleStyle.cs
- DelegateSerializationHolder.cs
- CacheVirtualItemsEvent.cs
- Color.cs
- PriorityRange.cs
- CodeComment.cs
- XPathNodeHelper.cs
- ActivityBindForm.Designer.cs
- FixUpCollection.cs
- InlineCollection.cs
- PersistenceTypeAttribute.cs
- TimelineClockCollection.cs
- ClickablePoint.cs
- TextSpan.cs
- GeneratedContractType.cs
- MetadataUtil.cs
- ExpressionBinding.cs
- AlgoModule.cs
- ProvidersHelper.cs
- ModuleElement.cs
- Literal.cs
- ListControlConvertEventArgs.cs
- UnionCqlBlock.cs
- ProtectedConfigurationProviderCollection.cs
- IRCollection.cs
- ContextMenu.cs
- RelationshipConverter.cs