Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / NetFx35 / System.ServiceModel.Web / System / ServiceModel / Syndication / SyndicationElementExtensionCollection.cs / 1 / SyndicationElementExtensionCollection.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Syndication { using System.Collections; using System.Collections.ObjectModel; using System.Runtime.Serialization; using System.Xml; using System.Xml.Serialization; using System.Diagnostics.CodeAnalysis; using System.Collections.Generic; using System.ServiceModel.Web; // sealed because the ctor results in a call to the virtual InsertItem method public sealed class SyndicationElementExtensionCollection : Collection{ XmlBuffer buffer; bool initialized; internal SyndicationElementExtensionCollection() : this((XmlBuffer) null) { } internal SyndicationElementExtensionCollection(XmlBuffer buffer) : base() { this.buffer = buffer; if (this.buffer != null) { PopulateElements(); } initialized = true; } internal SyndicationElementExtensionCollection(SyndicationElementExtensionCollection source) : base() { this.buffer = source.buffer; for (int i = 0; i < source.Items.Count; ++i) { base.Add(source.Items[i]); } initialized = true; } public void Add(object extension) { if (extension is SyndicationElementExtension) { base.Add((SyndicationElementExtension) extension); } else { this.Add(extension, (DataContractSerializer) null); } } public void Add(string outerName, string outerNamespace, object dataContractExtension) { this.Add(outerName, outerNamespace, dataContractExtension, null); } public void Add(object dataContractExtension, DataContractSerializer serializer) { this.Add(null, null, dataContractExtension, serializer); } public void Add(string outerName, string outerNamespace, object dataContractExtension, XmlObjectSerializer dataContractSerializer) { if (dataContractExtension == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("dataContractExtension"); } if (dataContractSerializer == null) { dataContractSerializer = new DataContractSerializer(dataContractExtension.GetType()); } base.Add(new SyndicationElementExtension(outerName, outerNamespace, dataContractExtension, dataContractSerializer)); } public void Add(object xmlSerializerExtension, XmlSerializer serializer) { if (xmlSerializerExtension == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("xmlSerializerExtension"); } if (serializer == null) { serializer = new XmlSerializer(xmlSerializerExtension.GetType()); } base.Add(new SyndicationElementExtension(xmlSerializerExtension, serializer)); } public void Add(XmlReader xmlReader) { if (xmlReader == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("xmlReader"); } base.Add(new SyndicationElementExtension(xmlReader)); } public XmlReader GetReaderAtElementExtensions() { XmlBuffer extensionsBuffer = GetOrCreateBufferOverExtensions(); XmlReader reader = extensionsBuffer.GetReader(0); reader.ReadStartElement(); return reader; } public Collection ReadElementExtensions (string extensionName, string extensionNamespace) { return ReadElementExtensions (extensionName, extensionNamespace, new DataContractSerializer(typeof(TExtension))); } public Collection ReadElementExtensions (string extensionName, string extensionNamespace, XmlObjectSerializer serializer) { if (serializer == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("serializer"); } return ReadExtensions (extensionName, extensionNamespace, serializer, null); } public Collection ReadElementExtensions (string extensionName, string extensionNamespace, XmlSerializer serializer) { if (serializer == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("serializer"); } return ReadExtensions (extensionName, extensionNamespace, null, serializer); } internal void WriteTo(XmlWriter writer) { if (this.buffer != null) { using (XmlDictionaryReader reader = this.buffer.GetReader(0)) { reader.ReadStartElement(); while (reader.IsStartElement()) { writer.WriteNode(reader, false); } } } else { for (int i = 0; i < this.Items.Count; ++i) { this.Items[i].WriteTo(writer); } } } protected override void ClearItems() { base.ClearItems(); // clear the cached buffer if the operation is happening outside the constructor if (initialized) { this.buffer = null; } } protected override void InsertItem(int index, SyndicationElementExtension item) { if (item == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("item"); } base.InsertItem(index, item); // clear the cached buffer if the operation is happening outside the constructor if (initialized) { this.buffer = null; } } protected override void RemoveItem(int index) { base.RemoveItem(index); // clear the cached buffer if the operation is happening outside the constructor if (initialized) { this.buffer = null; } } protected override void SetItem(int index, SyndicationElementExtension item) { if (item == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("item"); } base.SetItem(index, item); // clear the cached buffer if the operation is happening outside the constructor if (initialized) { this.buffer = null; } } XmlBuffer GetOrCreateBufferOverExtensions() { if (this.buffer != null) { return this.buffer; } XmlBuffer newBuffer = new XmlBuffer(int.MaxValue); using (XmlWriter writer = newBuffer.OpenSection(XmlDictionaryReaderQuotas.Max)) { writer.WriteStartElement(Rss20Constants.ExtensionWrapperTag); for (int i = 0; i < this.Count; ++i) { this[i].WriteTo(writer); } writer.WriteEndElement(); } newBuffer.CloseSection(); newBuffer.Close(); this.buffer = newBuffer; return newBuffer; } void PopulateElements() { using (XmlDictionaryReader reader = this.buffer.GetReader(0)) { reader.ReadStartElement(); int index = 0; while (reader.IsStartElement()) { base.Add(new SyndicationElementExtension(this.buffer, index, reader.LocalName, reader.NamespaceURI)); reader.Skip(); ++index; } } } Collection ReadExtensions (string extensionName, string extensionNamespace, XmlObjectSerializer dcSerializer, XmlSerializer xmlSerializer) { if (string.IsNullOrEmpty(extensionName)) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(SR2.GetString(SR2.ExtensionNameNotSpecified)); } Fx.Assert((dcSerializer == null) != (xmlSerializer == null), "exactly one serializer should be supplied"); // normalize the null and empty namespace if (extensionNamespace == null) { extensionNamespace = string.Empty; } Collection results = new Collection (); for (int i = 0; i < this.Count; ++i) { if (extensionName != this[i].OuterName || extensionNamespace != this[i].OuterNamespace) { continue; } if (dcSerializer != null) { results.Add(this[i].GetObject (dcSerializer)); } else { results.Add(this[i].GetObject (xmlSerializer)); } } return results; } } } // 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
- ContentTextAutomationPeer.cs
- NonBatchDirectoryCompiler.cs
- XmlSchemaComplexContent.cs
- SoapAttributeAttribute.cs
- VisualState.cs
- EnumerableCollectionView.cs
- DoubleLinkList.cs
- RegisteredArrayDeclaration.cs
- XPathArrayIterator.cs
- DataControlImageButton.cs
- HttpCookie.cs
- SoapIncludeAttribute.cs
- NetworkInformationPermission.cs
- DesigntimeLicenseContext.cs
- CssStyleCollection.cs
- LazyLoadBehavior.cs
- ExportFileRequest.cs
- infer.cs
- SeverityFilter.cs
- CorrelationRequestContext.cs
- MimeParameterWriter.cs
- CopyCodeAction.cs
- QuaternionKeyFrameCollection.cs
- InvalidPropValue.cs
- WindowsTooltip.cs
- Image.cs
- SettingsBase.cs
- AttachInfo.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- TextTrailingCharacterEllipsis.cs
- DecoderNLS.cs
- AssociationSetMetadata.cs
- TableRowCollection.cs
- ServiceDesigner.cs
- MruCache.cs
- StdRegProviderWrapper.cs
- RedistVersionInfo.cs
- WebEventTraceProvider.cs
- SmiContextFactory.cs
- Splitter.cs
- EdmToObjectNamespaceMap.cs
- JournalNavigationScope.cs
- SafeRegistryHandle.cs
- InstanceView.cs
- GeometryModel3D.cs
- SqlBinder.cs
- ObjectDataSource.cs
- RequestSecurityTokenForRemoteTokenFactory.cs
- AutomationElementCollection.cs
- Int32.cs
- DataViewManager.cs
- EFDataModelProvider.cs
- ArgumentDirectionHelper.cs
- WinEventHandler.cs
- ThreadExceptionDialog.cs
- ExecutionEngineException.cs
- AsnEncodedData.cs
- StrokeNodeOperations.cs
- XmlIncludeAttribute.cs
- itemelement.cs
- CodeMemberMethod.cs
- FaultDesigner.cs
- Rotation3DAnimationUsingKeyFrames.cs
- PersistenceTypeAttribute.cs
- Helpers.cs
- TimeEnumHelper.cs
- XmlQuerySequence.cs
- DragStartedEventArgs.cs
- UnknownWrapper.cs
- SamlDoNotCacheCondition.cs
- PolicyException.cs
- ECDiffieHellmanCng.cs
- CacheDependency.cs
- CodeConditionStatement.cs
- Color.cs
- DiscoveryReference.cs
- NetworkInformationPermission.cs
- MgmtResManager.cs
- DataFieldConverter.cs
- GPRECT.cs
- InitializationEventAttribute.cs
- OracleBinary.cs
- GridViewRowEventArgs.cs
- FileDialog_Vista_Interop.cs
- ReflectPropertyDescriptor.cs
- GatewayDefinition.cs
- MiniAssembly.cs
- TypeLoadException.cs
- AsyncOperationManager.cs
- DataListItemCollection.cs
- HtmlWindowCollection.cs
- ConfigErrorGlyph.cs
- RegistrySecurity.cs
- DrawingGroupDrawingContext.cs
- ProjectionCamera.cs
- DataRelationCollection.cs
- SchemaImporter.cs
- ObjectListItemCollection.cs
- CssStyleCollection.cs
- ColumnPropertiesGroup.cs