Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / infocard / Service / managed / Microsoft / InfoCards / IssuerInformation.cs / 1 / IssuerInformation.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace Microsoft.InfoCards { using System; using System.Xml; using System.Collections.Generic; using System.Collections; using System.Xml.Serialization; using System.Xml.Schema; using System.IO; using System.Text; using Microsoft.InfoCards.Diagnostics; using IDT = Microsoft.InfoCards.Diagnostics.InfoCardTrace; internal class IssuerInformationEntry { string entryName; string entryValue; public string Name { get { return entryName; } } public string Value { get { return entryValue; } } public IssuerInformationEntry( string name, string value ) { entryName = name; entryValue = value; } } // // Summary // Additional information about a managed card issuer // internal class IssuerInformation { Listm_informationEntries; public IssuerInformation() { m_informationEntries = new List (); } // // Summary // Serialize the IssuerInformation object // // Parameter // writer - binary stream conforming to the serialization format supported by this class. // public void Serialize( System.IO.Stream stream ) { // // Setup a BinaryWriter to serialize the bytes of each member to the provided stream // System.IO.BinaryWriter writer = new BinaryWriter( stream, Encoding.Unicode ); writer.Write( m_informationEntries.Count ); if( m_informationEntries.Count > 0 ) { foreach( IssuerInformationEntry entry in m_informationEntries ) { Utility.SerializeString( writer, entry.Name ); Utility.SerializeString( writer, entry.Value ); } } } // // Summary // Read the IssuerInformation object // // Parameter // reader - xml stream reader conforming to the serialization format supported by this class. // public void ReadIssuerInformation( XmlReader reader ) { if( !reader.IsStartElement( XmlNames.WSIdentity07.IssuerInformation, XmlNames.WSIdentity07.Namespace ) ) { throw IDT.ThrowHelperError( new XmlException( SR.GetString( SR.UnexpectedElement ) ) ); } while( reader.Read() ) { if( XmlNames.WSIdentity07.IssuerInformationEntry == reader.LocalName && XmlNames.WSIdentity07.Namespace == reader.NamespaceURI ) { ReadIssuerInformationEntry( reader ); } if( XmlNames.WSIdentity07.IssuerInformation == reader.LocalName && XmlNames.WSIdentity07.Namespace == reader.NamespaceURI && XmlNodeType.EndElement == reader.NodeType ) { return; } } } // // Summary // Read the IssuerInformationEntry object // // Parameter // reader - xml stream reader conforming to the serialization format supported by this class. // public void ReadIssuerInformationEntry( XmlReader reader ) { if( !reader.IsStartElement( XmlNames.WSIdentity07.IssuerInformationEntry, XmlNames.WSIdentity07.Namespace ) ) { throw IDT.ThrowHelperError( new XmlException( SR.GetString( SR.UnexpectedElement ) ) ); } string name = string.Empty; string value = string.Empty; while( reader.Read() ) { if( XmlNames.WSIdentity07.IssuerInformationEntry == reader.LocalName && XmlNames.WSIdentity07.Namespace == reader.NamespaceURI && XmlNodeType.EndElement == reader.NodeType ) { m_informationEntries.Add( new IssuerInformationEntry( name, value ) ); return; } if( XmlNames.WSIdentity07.EntryName == reader.LocalName && XmlNames.WSIdentity07.Namespace == reader.NamespaceURI ) { name = reader.ReadString(); if( string.IsNullOrEmpty( name ) ) { throw IDT.ThrowHelperError( new InvalidCardException() ); } } if( XmlNames.WSIdentity07.EntryValue == reader.LocalName && XmlNames.WSIdentity07.Namespace == reader.NamespaceURI ) { value = reader.ReadString(); } } } } } // 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
- PageCopyCount.cs
- XmlSchema.cs
- UdpConstants.cs
- IODescriptionAttribute.cs
- PrintDialogDesigner.cs
- XmlDataLoader.cs
- BaseConfigurationRecord.cs
- Base64WriteStateInfo.cs
- WebPartTransformerAttribute.cs
- EnvelopedPkcs7.cs
- WebPartMinimizeVerb.cs
- complextypematerializer.cs
- StateDesigner.CommentLayoutGlyph.cs
- ConfigurationStrings.cs
- BooleanAnimationBase.cs
- SqlWebEventProvider.cs
- WindowsRichEditRange.cs
- XmlParser.cs
- OciHandle.cs
- ThousandthOfEmRealDoubles.cs
- NativeActivityFaultContext.cs
- CustomAttribute.cs
- MachinePropertyVariants.cs
- RadioButtonList.cs
- ResourcePermissionBase.cs
- FrameworkElement.cs
- ListParagraph.cs
- CodeComment.cs
- TextDecorationCollection.cs
- CollectionViewSource.cs
- UInt32.cs
- DataBindingHandlerAttribute.cs
- CompositeCollectionView.cs
- ApplicationProxyInternal.cs
- WorkflowMarkupSerializationProvider.cs
- XmlLanguage.cs
- ServiceProviders.cs
- dsa.cs
- PlanCompiler.cs
- EventDrivenDesigner.cs
- codemethodreferenceexpression.cs
- RegexCompiler.cs
- MultiByteCodec.cs
- SystemDiagnosticsSection.cs
- TransactionProxy.cs
- wgx_exports.cs
- ActivityScheduledQuery.cs
- CodeDOMUtility.cs
- WizardPanelChangingEventArgs.cs
- MaterialGroup.cs
- UInt64Converter.cs
- TempEnvironment.cs
- EntityRecordInfo.cs
- StringSource.cs
- CodeGotoStatement.cs
- XmlSchemaSimpleContentRestriction.cs
- SqlCacheDependencySection.cs
- ViewSimplifier.cs
- RegexCharClass.cs
- TemplateNameScope.cs
- ExceptionUtility.cs
- AppliesToBehaviorDecisionTable.cs
- DataServiceException.cs
- PropertyChangingEventArgs.cs
- propertytag.cs
- TileBrush.cs
- COM2EnumConverter.cs
- SynchronizingStream.cs
- XmlAutoDetectWriter.cs
- BlockingCollection.cs
- TimeStampChecker.cs
- GraphicsContainer.cs
- MasterPageParser.cs
- ActiveXSite.cs
- FieldNameLookup.cs
- QueryGeneratorBase.cs
- FileLogRecordEnumerator.cs
- InheritedPropertyDescriptor.cs
- EFAssociationProvider.cs
- PackagingUtilities.cs
- ReflectionServiceProvider.cs
- AutomationAttributeInfo.cs
- FormViewUpdateEventArgs.cs
- filewebresponse.cs
- TypeSystem.cs
- ParameterInfo.cs
- DataControlFieldCollection.cs
- FormatterServicesNoSerializableCheck.cs
- UInt16Storage.cs
- WebRequest.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- ImageDesigner.cs
- DiagnosticStrings.cs
- NameValuePair.cs
- WebScriptServiceHost.cs
- SocketStream.cs
- ComponentTray.cs
- SqlDeflator.cs
- UInt64Converter.cs
- counter.cs