Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartRestoreVerb.cs / 1 / WebPartRestoreVerb.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; internal sealed class WebPartRestoreVerb : WebPartActionVerb { private string _defaultDescription; private string _defaultText; private string DefaultDescription { get { if (_defaultDescription == null) { _defaultDescription = SR.GetString(SR.WebPartRestoreVerb_Description); } return _defaultDescription; } } private string DefaultText { get { if (_defaultText == null) { _defaultText = SR.GetString(SR.WebPartRestoreVerb_Text); } return _defaultText; } } // Properties must look at viewstate directly instead of the property in the base class, // so we can distinguish between an unset property and a property set to String.Empty. [ WebSysDefaultValue(SR.WebPartRestoreVerb_Description) ] public override string Description { get { object o = ViewState["Description"]; return (o == null) ? DefaultDescription : (string)o; } set { ViewState["Description"] = value; } } [ WebSysDefaultValue(SR.WebPartRestoreVerb_Text) ] public override string Text { get { object o = ViewState["Text"]; return (o == null) ? DefaultText : (string)o; } set { ViewState["Text"] = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; internal sealed class WebPartRestoreVerb : WebPartActionVerb { private string _defaultDescription; private string _defaultText; private string DefaultDescription { get { if (_defaultDescription == null) { _defaultDescription = SR.GetString(SR.WebPartRestoreVerb_Description); } return _defaultDescription; } } private string DefaultText { get { if (_defaultText == null) { _defaultText = SR.GetString(SR.WebPartRestoreVerb_Text); } return _defaultText; } } // Properties must look at viewstate directly instead of the property in the base class, // so we can distinguish between an unset property and a property set to String.Empty. [ WebSysDefaultValue(SR.WebPartRestoreVerb_Description) ] public override string Description { get { object o = ViewState["Description"]; return (o == null) ? DefaultDescription : (string)o; } set { ViewState["Description"] = value; } } [ WebSysDefaultValue(SR.WebPartRestoreVerb_Text) ] public override string Text { get { object o = ViewState["Text"]; return (o == null) ? DefaultText : (string)o; } set { ViewState["Text"] = value; } } } } // 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
- NetworkAddressChange.cs
- DataContractSet.cs
- _RequestCacheProtocol.cs
- RegexWriter.cs
- RightsDocument.cs
- GcHandle.cs
- UnsafeNativeMethods.cs
- ViewStateModeByIdAttribute.cs
- IIS7ConfigurationLoader.cs
- XPathParser.cs
- PropertyGroupDescription.cs
- AnnouncementSendsAsyncResult.cs
- CollectionViewGroupRoot.cs
- SQLInt16Storage.cs
- BamlRecords.cs
- QilNode.cs
- SubpageParagraph.cs
- WebServiceData.cs
- Main.cs
- cookie.cs
- GroupDescription.cs
- ProcessHostMapPath.cs
- BindingValueChangedEventArgs.cs
- SelectionRangeConverter.cs
- AdornerDecorator.cs
- PolygonHotSpot.cs
- DependentList.cs
- AuthenticatingEventArgs.cs
- SqlMethodAttribute.cs
- EnvelopedPkcs7.cs
- TextChange.cs
- XmlDataImplementation.cs
- XmlSerializer.cs
- Base64Encoding.cs
- TextDecorationCollection.cs
- ExpressionConverter.cs
- ValidationErrorCollection.cs
- CellIdBoolean.cs
- MetadataUtilsSmi.cs
- TypeGeneratedEventArgs.cs
- DropTarget.cs
- GenericUriParser.cs
- AppPool.cs
- FileVersionInfo.cs
- FontStretches.cs
- OleDbConnection.cs
- NamespaceInfo.cs
- ToolBarPanel.cs
- WriteTimeStream.cs
- ChtmlPhoneCallAdapter.cs
- UnionCqlBlock.cs
- NumericUpDown.cs
- TypeDependencyAttribute.cs
- DisableDpiAwarenessAttribute.cs
- SystemIcmpV4Statistics.cs
- EmissiveMaterial.cs
- RecognitionEventArgs.cs
- _TimerThread.cs
- ProfileEventArgs.cs
- GeneratedView.cs
- CompositeControlDesigner.cs
- SecurityResources.cs
- BitmapEncoder.cs
- X509Certificate2Collection.cs
- SystemEvents.cs
- FtpWebResponse.cs
- NestedContainer.cs
- ConfigXmlAttribute.cs
- ControlCommandSet.cs
- StoreContentChangedEventArgs.cs
- PasswordTextContainer.cs
- TemplateComponentConnector.cs
- SimpleWebHandlerParser.cs
- FileNotFoundException.cs
- HwndTarget.cs
- DbUpdateCommandTree.cs
- SByteStorage.cs
- PermissionListSet.cs
- XmlElementList.cs
- TableLayoutPanelDesigner.cs
- DictionaryGlobals.cs
- DataBinding.cs
- PopOutPanel.cs
- SmtpFailedRecipientsException.cs
- TableLayoutRowStyleCollection.cs
- TraceInternal.cs
- SimpleColumnProvider.cs
- MetadataArtifactLoaderComposite.cs
- PropertyNames.cs
- HttpHeaderCollection.cs
- SoapIgnoreAttribute.cs
- Font.cs
- ServicesUtilities.cs
- AppLevelCompilationSectionCache.cs
- OverlappedAsyncResult.cs
- XPathBuilder.cs
- JournalEntryListConverter.cs
- TimeZone.cs
- DelegateTypeInfo.cs
- BoolLiteral.cs