1 //------------------------------------------------------------------------------ 2 // <copyright file="IRefreshableDeviceSpecificEditor.cs" company="Microsoft"> 3 // Copyright (c) Microsoft Corporation. All rights reserved. 4 // </copyright> 5 //------------------------------------------------------------------------------ 6 7 namespace System.Web.UI.Design.MobileControls 8 { 9 using System.Web.UI.MobileControls; 10 11 [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.")] 12 internal interface IRefreshableDeviceSpecificEditor 13 { RequestRefresh()14 bool RequestRefresh(); Refresh(String deviceSpecificID, DeviceSpecific deviceSpecific)15 void Refresh(String deviceSpecificID, DeviceSpecific deviceSpecific); UnderlyingObjectsChanged()16 void UnderlyingObjectsChanged(); BeginExternalDeviceSpecificEdit()17 void BeginExternalDeviceSpecificEdit(); EndExternalDeviceSpecificEdit(bool commitChanges)18 void EndExternalDeviceSpecificEdit(bool commitChanges); DeviceSpecificRenamed(String oldDeviceSpecificID, String newDeviceSpecificID)19 void DeviceSpecificRenamed(String oldDeviceSpecificID, String newDeviceSpecificID); DeviceSpecificDeleted(String DeviceSpecificID)20 void DeviceSpecificDeleted(String DeviceSpecificID); 21 } 22 } 23