Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / infocard / Service / managed / Microsoft / InfoCards / GetUserPreferenceRequest.cs / 1 / GetUserPreferenceRequest.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace Microsoft.InfoCards { using System; using System.Collections; using System.IO; using Microsoft.InfoCards.Diagnostics; using IDT = Microsoft.InfoCards.Diagnostics.InfoCardTrace; // // Summary: // This class handles the request from the UI Agent to retrieve the user preferences // from the store. // // Remarks: // Null will be returned if no user preference information is found in the store. // class GetUserPreferenceRequest : UIAgentRequest { UserPreference m_userPreference; // // Summary: // Constructs a new GetUserPreferenceRequest instance. // // Parameters: // rpcHandle - Handle to the RPC call from the UI Agent // inArgs - Stream for the incoming information. Null in this case. // outArgs - Stream used to collect the outbound data. // connection - Store connection available to this request. // public GetUserPreferenceRequest( IntPtr rpcHandle, Stream inArgs, Stream outArgs, ClientUIRequest parent ) : base( rpcHandle, inArgs, outArgs, parent ) { m_userPreference = null; } // // Summary // Event for marshalling the request information // // Remarks // Not used // protected override void OnMarshalInArgs() { } // // Summary // Event for processing the request // protected override void OnProcess() { StoreConnection connection = StoreConnection.GetConnection(); try { m_userPreference = UserPreference.Get( connection ); } finally { connection.Close(); } } // // Summary // Event for marshalling the response information // // Remarks // Write nothing if the UserPreference object was not found // in the store. // protected override void OnMarshalOutArgs() { if( null != m_userPreference ) { m_userPreference.Serialize( OutArgs ); } } } } // 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
- TextDecorationLocationValidation.cs
- DPTypeDescriptorContext.cs
- TypeLibConverter.cs
- UnsafeNetInfoNativeMethods.cs
- InfoCardBinaryReader.cs
- XmlStreamStore.cs
- CodeMethodInvokeExpression.cs
- AdRotator.cs
- HtmlFormParameterReader.cs
- ModuleBuilderData.cs
- RectValueSerializer.cs
- DispatcherExceptionFilterEventArgs.cs
- Win32.cs
- SortedList.cs
- TypeSystem.cs
- PenThread.cs
- DesignerForm.cs
- DataContractSerializerOperationBehavior.cs
- messageonlyhwndwrapper.cs
- AggregateNode.cs
- TextSearch.cs
- QueryableFilterUserControl.cs
- ListViewTableRow.cs
- ItemCollection.cs
- JsonEnumDataContract.cs
- MILUtilities.cs
- CopyAttributesAction.cs
- AxisAngleRotation3D.cs
- ToolStripItemTextRenderEventArgs.cs
- TemplateXamlParser.cs
- DBBindings.cs
- FunctionImportElement.cs
- WindowsFormsLinkLabel.cs
- DataBinding.cs
- SingleAnimationUsingKeyFrames.cs
- XmlSchemaSimpleTypeRestriction.cs
- ManipulationDevice.cs
- SecurityAttributeGenerationHelper.cs
- RadioButtonAutomationPeer.cs
- InternalBase.cs
- WindowsAuthenticationModule.cs
- ComEventsMethod.cs
- InheritanceContextChangedEventManager.cs
- ICspAsymmetricAlgorithm.cs
- ZipIOCentralDirectoryFileHeader.cs
- ToolStripItemCollection.cs
- IDispatchConstantAttribute.cs
- Pkcs9Attribute.cs
- CSharpCodeProvider.cs
- CompilationRelaxations.cs
- ServiceDescription.cs
- ChannelManagerHelpers.cs
- SessionPageStateSection.cs
- XmlRawWriterWrapper.cs
- ConfigXmlAttribute.cs
- COMException.cs
- TcpTransportSecurity.cs
- WizardPanel.cs
- XmlDataSourceView.cs
- Keyboard.cs
- PreloadedPackages.cs
- RegexCaptureCollection.cs
- ToolStripItemEventArgs.cs
- SemanticBasicElement.cs
- RawStylusInputReport.cs
- DataGridViewLayoutData.cs
- OutputCacheProviderCollection.cs
- ContextMenu.cs
- Overlapped.cs
- CurrencyWrapper.cs
- WebServiceHostFactory.cs
- SafeBitVector32.cs
- Transform.cs
- FactoryGenerator.cs
- EntityTypeBase.cs
- ControlEvent.cs
- InputLangChangeEvent.cs
- OdbcErrorCollection.cs
- BitConverter.cs
- SymbolType.cs
- KeyPressEvent.cs
- TextServicesPropertyRanges.cs
- SqlGenericUtil.cs
- FreezableOperations.cs
- CustomAttributeSerializer.cs
- InternalBase.cs
- RSAPKCS1KeyExchangeFormatter.cs
- Normalization.cs
- ChannelManager.cs
- Label.cs
- WebSysDisplayNameAttribute.cs
- TextWriter.cs
- ObjectStorage.cs
- ConfigurationValues.cs
- XamlRtfConverter.cs
- CodeIdentifier.cs
- TreeNodeStyleCollection.cs
- PropertyNames.cs
- ColorConverter.cs
- SemanticResolver.cs