Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / MIT / System / Web / UI / MobileControls / Design / DeviceSpecificDialogCachedState.cs / 1305376 / DeviceSpecificDialogCachedState.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.MobileControls { using System; using System.Collections; using System.Web.UI.MobileControls; [ System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode) ] [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] internal class DeviceSpecificDialogCachedState : ICloneable { protected void SaveChoices( IDeviceSpecificDesigner designer, String deviceSpecificID, ICollection choices ) { DeviceSpecific deviceSpecific; if (!designer.GetDeviceSpecific(deviceSpecificID, out deviceSpecific)) { return; } if(choices.Count == 0) { designer.SetDeviceSpecific(deviceSpecificID, null); return; } if (deviceSpecific == null) { deviceSpecific = new DeviceSpecific(); } else { deviceSpecific.Choices.Clear(); } foreach (ChoiceTreeNode node in choices) { node.CommitChanges(); DeviceSpecificChoice choice = node.Choice.RuntimeChoice; deviceSpecific.Choices.Add(choice); } designer.SetDeviceSpecific(deviceSpecificID, deviceSpecific); } ////// Perform shallow copy of state. Cached contents will still /// point to the same instances. /// public Object Clone() { return MemberwiseClone(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.MobileControls { using System; using System.Collections; using System.Web.UI.MobileControls; [ System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode) ] [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] internal class DeviceSpecificDialogCachedState : ICloneable { protected void SaveChoices( IDeviceSpecificDesigner designer, String deviceSpecificID, ICollection choices ) { DeviceSpecific deviceSpecific; if (!designer.GetDeviceSpecific(deviceSpecificID, out deviceSpecific)) { return; } if(choices.Count == 0) { designer.SetDeviceSpecific(deviceSpecificID, null); return; } if (deviceSpecific == null) { deviceSpecific = new DeviceSpecific(); } else { deviceSpecific.Choices.Clear(); } foreach (ChoiceTreeNode node in choices) { node.CommitChanges(); DeviceSpecificChoice choice = node.Choice.RuntimeChoice; deviceSpecific.Choices.Add(choice); } designer.SetDeviceSpecific(deviceSpecificID, deviceSpecific); } ////// Perform shallow copy of state. Cached contents will still /// point to the same instances. /// public Object Clone() { return MemberwiseClone(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DispatcherHookEventArgs.cs
- PlatformNotSupportedException.cs
- Color.cs
- _FixedSizeReader.cs
- ToolBarTray.cs
- RowParagraph.cs
- LogicalExpr.cs
- CommandEventArgs.cs
- FileDialog_Vista.cs
- LazyInitializer.cs
- TextServicesManager.cs
- XComponentModel.cs
- HandlerWithFactory.cs
- ProfilePropertySettingsCollection.cs
- Vector3D.cs
- RegisteredArrayDeclaration.cs
- ResetableIterator.cs
- DataGridTextBoxColumn.cs
- ItemChangedEventArgs.cs
- Stacktrace.cs
- hresults.cs
- Char.cs
- ValidationErrorCollection.cs
- SBCSCodePageEncoding.cs
- ProvidersHelper.cs
- WpfXamlLoader.cs
- DataServiceRequestException.cs
- BindingWorker.cs
- ColorPalette.cs
- XmlSchemaDocumentation.cs
- Point3DValueSerializer.cs
- CodeStatementCollection.cs
- TextEditorMouse.cs
- ChannelSinkStacks.cs
- SymmetricAlgorithm.cs
- SqlNotificationRequest.cs
- Command.cs
- SmiConnection.cs
- JoinGraph.cs
- StorageMappingFragment.cs
- DropDownList.cs
- OperationContext.cs
- AssemblyName.cs
- XmlDownloadManager.cs
- cookiecontainer.cs
- PerformanceCounterNameAttribute.cs
- TextTreeText.cs
- HtmlTernaryTree.cs
- UriTemplatePathSegment.cs
- ToolStripContentPanelRenderEventArgs.cs
- CommandHelper.cs
- ConstraintConverter.cs
- AssemblyLoader.cs
- InkPresenterAutomationPeer.cs
- TagMapCollection.cs
- WebRequestModulesSection.cs
- DuplexSecurityProtocolFactory.cs
- DropShadowEffect.cs
- DataShape.cs
- EmbeddedMailObjectsCollection.cs
- FamilyMap.cs
- DefaultHttpHandler.cs
- RecognizeCompletedEventArgs.cs
- QilLiteral.cs
- PaperSource.cs
- AsyncOperationManager.cs
- AlphabeticalEnumConverter.cs
- CodeCatchClause.cs
- DataGridViewCellEventArgs.cs
- EventDescriptorCollection.cs
- DataSysAttribute.cs
- MILUtilities.cs
- _SafeNetHandles.cs
- TemplatedWizardStep.cs
- MulticastDelegate.cs
- DrawTreeNodeEventArgs.cs
- WebCodeGenerator.cs
- FileSystemInfo.cs
- DictionaryContent.cs
- CredentialCache.cs
- FlowDocumentFormatter.cs
- HashSet.cs
- PointLightBase.cs
- CmsUtils.cs
- MSAANativeProvider.cs
- WarningException.cs
- StylusPointPropertyId.cs
- ResourceReferenceKeyNotFoundException.cs
- ISAPIWorkerRequest.cs
- XmlLangPropertyAttribute.cs
- WindowsIPAddress.cs
- BrowsableAttribute.cs
- DependencyPropertyConverter.cs
- SqlProvider.cs
- SiteMapNodeCollection.cs
- DataTableNewRowEvent.cs
- AliasGenerator.cs
- ToolboxDataAttribute.cs
- TableCell.cs
- ColumnResizeAdorner.cs