Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / infocard / Service / managed / Microsoft / InfoCards / UserPreference.cs / 1 / UserPreference.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace Microsoft.InfoCards { using System; using System.IO; using System.Collections.Generic; using System.Text; using System.Globalization; //CultureInfo using Microsoft.InfoCards.Diagnostics; using IDT = Microsoft.InfoCards.Diagnostics.InfoCardTrace; // // Summary: // User prefrences for the infocard system // internal class UserPreference { const byte Version = 1; const byte Marker = 29; const string Id = "urn:microsoft.com:infocards:user_prefs"; const int s_ATApplicationsDisabled = 0; int m_ATApplicationsFlags; // Application flags. bool m_showClaimsFlag; // If the claim list should be expanded in UI public UserPreference() { } // // Summary // Serialize the user preferences // // Parameters // stream - Stream to serialize data from. // public UserPreference( Stream stream ) { Deserialize( stream ); } // // Summary // Serialize the user preferences // // Parameters // stream - Memory stream to serialize data to. // 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 ); // // Write each member to binary stream // writer.Write( Version ); writer.Write( (Int32) m_ATApplicationsFlags ); writer.Write( m_showClaimsFlag ); writer.Write( Marker ); } // // Summary // Deserialize the user preferences // // Parameters // stream - Memory stream containing serialized data. // public void Deserialize( System.IO.Stream stream ) { // // Populate each member from the stream // BinaryReader reader = new InfoCardBinaryReader( stream, Encoding.Unicode ); // // Check the version // if( Version != reader.ReadByte() ) { IDT.Assert( false, "Incorrect version found in stream deserialization" ); } // // Read each property from the stream // m_ATApplicationsFlags = reader.ReadInt32(); m_showClaimsFlag = reader.ReadBoolean(); // // Validate the end of the buffer // if( Marker != reader.ReadByte() ) { IDT.Assert( false, "malformed stream detected" ); } } // // Summary // Save the user preferences to the store // // Parameters // con - connection to the store // public void Save( StoreConnection con ) { IDT.TraceDebug( "Saving UserPreferences..." ); IDT.TraceDebug( ToString() ); // // Write the user preferences object to the store // DataRow row = con.GetSingleRow( new QueryParameter( SecondaryIndexDefinition.ObjectTypeIndex, (Int32)StorableObjectType.UserPreferences ), new QueryParameter( SecondaryIndexDefinition.GlobalIdIndex, GlobalId.DeriveFrom( Id ) ) ); if( null == row ) { row = new DataRow(); row.ObjectType = (Int32) StorableObjectType.UserPreferences; row.GlobalId = GlobalId.DeriveFrom( Id ); } // // Populate the data object // MemoryStream ms = new MemoryStream(); Serialize( ms ); row.SetDataField( ms.ToArray() ); // // Save the row to the database // con.Save( row ); } // // Summary // Constructs a string with the state of the receiver. // // Returns // String showing the state of the object // public override string ToString() { StringBuilder sb = new StringBuilder(); sb.AppendFormat( "Background Color:\t{0}\n", m_ATApplicationsFlags.ToString( CultureInfo.InvariantCulture ) ); sb.AppendFormat( "List expansion flag:\t{0}\n", m_showClaimsFlag.ToString() ); return sb.ToString(); } // // Summary // Retrieve the user preferences from the store. // There should never be more than one of these so just return the first one. // // Parameters // con - connection to the store // // Returns // User preference object with the users preferences. // Null is returned if the object is not found in the store. // public static UserPreference Get( StoreConnection con ) { ListparamList = new List (); QueryParameter query = new QueryParameter( SecondaryIndexDefinition.ObjectTypeIndex, (Int32) StorableObjectType.UserPreferences ); paramList.Add( query ); DataRow row = con.GetSingleRow( paramList.ToArray() ); if( null != row ) { UserPreference userPref; MemoryStream ms = new MemoryStream( row.GetDataField() ); userPref = new UserPreference( ms ); return userPref; } else { return null; } } } } // 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
- ContentOnlyMessage.cs
- CodeCatchClauseCollection.cs
- StringValidatorAttribute.cs
- ImpersonateTokenRef.cs
- DesignerObject.cs
- ItemList.cs
- XmlNullResolver.cs
- DataSpaceManager.cs
- X509ThumbprintKeyIdentifierClause.cs
- AutoSizeComboBox.cs
- DbConnectionPoolOptions.cs
- SafeSecurityHandles.cs
- TextRange.cs
- CommandID.cs
- MetabaseServerConfig.cs
- LZCodec.cs
- FormViewCommandEventArgs.cs
- LinqDataSourceView.cs
- login.cs
- Control.cs
- SecurityPolicySection.cs
- AnonymousIdentificationModule.cs
- FrameworkContentElement.cs
- HttpProxyTransportBindingElement.cs
- NamedPipeAppDomainProtocolHandler.cs
- AttachedPropertiesService.cs
- TdsParameterSetter.cs
- IisTraceListener.cs
- SQLBinary.cs
- BackStopAuthenticationModule.cs
- ToolStripGripRenderEventArgs.cs
- ToolStripRenderer.cs
- CurrencyManager.cs
- xmlsaver.cs
- Button.cs
- ObjectStateManager.cs
- IPAddress.cs
- DependencyObjectProvider.cs
- ByteFacetDescriptionElement.cs
- TreeNodeConverter.cs
- BrushConverter.cs
- WorkflowOperationFault.cs
- SimpleWebHandlerParser.cs
- UnaryNode.cs
- TryExpression.cs
- ConfigurationManager.cs
- OracleColumn.cs
- TrackingServices.cs
- EntityException.cs
- GraphicsPathIterator.cs
- TypeElementCollection.cs
- PhysicalAddress.cs
- WebPermission.cs
- DeclaredTypeValidator.cs
- CheckPair.cs
- Visual3D.cs
- CodeCatchClause.cs
- CodeTypeOfExpression.cs
- MediaEntryAttribute.cs
- FormView.cs
- Attributes.cs
- AffineTransform3D.cs
- WebPartMenu.cs
- DataGridCellsPanel.cs
- XmlArrayAttribute.cs
- PictureBox.cs
- PerformanceCounter.cs
- ObjectStateEntry.cs
- EdmRelationshipRoleAttribute.cs
- SoapEnumAttribute.cs
- securitycriticaldata.cs
- BaseProcessProtocolHandler.cs
- FilterEventArgs.cs
- ResourceAttributes.cs
- mda.cs
- DispatchChannelSink.cs
- TemplateBamlRecordReader.cs
- TextServicesCompartmentContext.cs
- DataControlField.cs
- HtmlHead.cs
- ControlBuilderAttribute.cs
- _ListenerResponseStream.cs
- CodeConditionStatement.cs
- QueryExtender.cs
- SmiRecordBuffer.cs
- BindingElementCollection.cs
- TemplateNameScope.cs
- OracleCommandSet.cs
- RuntimeVariablesExpression.cs
- RangeContentEnumerator.cs
- TrimSurroundingWhitespaceAttribute.cs
- SpotLight.cs
- DateTimePickerDesigner.cs
- Quad.cs
- PeerName.cs
- Vector3D.cs
- ExeContext.cs
- _ScatterGatherBuffers.cs
- GZipStream.cs
- HandleCollector.cs