Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartDeleteVerb.cs / 1305376 / WebPartDeleteVerb.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; internal sealed class WebPartDeleteVerb : WebPartActionVerb { private string _defaultDescription; private string _defaultText; private string DefaultDescription { get { if (_defaultDescription == null) { _defaultDescription = SR.GetString(SR.WebPartDeleteVerb_Description); } return _defaultDescription; } } private string DefaultText { get { if (_defaultText == null) { _defaultText = SR.GetString(SR.WebPartDeleteVerb_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.WebPartDeleteVerb_Description) ] public override string Description { get { object o = ViewState["Description"]; return (o == null) ? DefaultDescription : (string)o; } set { ViewState["Description"] = value; } } [ WebSysDefaultValue(SR.WebPartDeleteVerb_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 WebPartDeleteVerb : WebPartActionVerb { private string _defaultDescription; private string _defaultText; private string DefaultDescription { get { if (_defaultDescription == null) { _defaultDescription = SR.GetString(SR.WebPartDeleteVerb_Description); } return _defaultDescription; } } private string DefaultText { get { if (_defaultText == null) { _defaultText = SR.GetString(SR.WebPartDeleteVerb_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.WebPartDeleteVerb_Description) ] public override string Description { get { object o = ViewState["Description"]; return (o == null) ? DefaultDescription : (string)o; } set { ViewState["Description"] = value; } } [ WebSysDefaultValue(SR.WebPartDeleteVerb_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
- AppearanceEditorPart.cs
- HtmlTitle.cs
- Span.cs
- MatrixTransform.cs
- GCHandleCookieTable.cs
- Fonts.cs
- GraphicsContainer.cs
- PictureBox.cs
- CodeAccessPermission.cs
- ConfigXmlAttribute.cs
- controlskin.cs
- CodeSnippetStatement.cs
- ToolStripArrowRenderEventArgs.cs
- ViewUtilities.cs
- Endpoint.cs
- ToolBarButtonDesigner.cs
- Panel.cs
- xml.cs
- DeploymentSection.cs
- ConfigurationHandlersInstallComponent.cs
- ServerValidateEventArgs.cs
- MouseBinding.cs
- PieceNameHelper.cs
- DataColumnPropertyDescriptor.cs
- DragCompletedEventArgs.cs
- CodeBinaryOperatorExpression.cs
- AttributedMetaModel.cs
- XamlParser.cs
- UserControlParser.cs
- WinFormsSecurity.cs
- DataSourceXmlTextReader.cs
- PolicyLevel.cs
- TextContainerChangeEventArgs.cs
- PropertyToken.cs
- MimeReturn.cs
- BindingManagerDataErrorEventArgs.cs
- ObjectReaderCompiler.cs
- GPRECTF.cs
- GridViewRow.cs
- TemplateManager.cs
- EncoderExceptionFallback.cs
- InvocationExpression.cs
- WebPartConnectionsCloseVerb.cs
- XmlTextReader.cs
- StrokeCollectionDefaultValueFactory.cs
- InvalidPrinterException.cs
- HwndSourceParameters.cs
- VScrollProperties.cs
- Point.cs
- StyleReferenceConverter.cs
- XmlDictionary.cs
- ComboBoxRenderer.cs
- TableSectionStyle.cs
- ScriptServiceAttribute.cs
- SecurityDocument.cs
- StructuredTypeEmitter.cs
- WebPartConnectVerb.cs
- HeaderPanel.cs
- BitStack.cs
- MemberHolder.cs
- GeneralTransformGroup.cs
- InstalledVoice.cs
- XmlUtil.cs
- WorkItem.cs
- PseudoWebRequest.cs
- StoreAnnotationsMap.cs
- WebDisplayNameAttribute.cs
- VariableModifiersHelper.cs
- CustomPopupPlacement.cs
- Literal.cs
- Misc.cs
- BypassElement.cs
- CanonicalizationDriver.cs
- SqlCachedBuffer.cs
- Geometry3D.cs
- OutputCacheSettings.cs
- IsolatedStorageFile.cs
- ImageList.cs
- KeyEventArgs.cs
- Codec.cs
- RawUIStateInputReport.cs
- SerializableReadOnlyDictionary.cs
- TabControl.cs
- OptionUsage.cs
- Baml2006ReaderContext.cs
- HtmlInputText.cs
- WorkflowMessageEventArgs.cs
- InputProcessorProfilesLoader.cs
- loginstatus.cs
- FormViewPageEventArgs.cs
- Scene3D.cs
- SqlDataSourceView.cs
- HttpModuleActionCollection.cs
- AxHost.cs
- InternalEnumValidatorAttribute.cs
- KeyboardInputProviderAcquireFocusEventArgs.cs
- SchemaImporterExtension.cs
- WhitespaceSignificantCollectionAttribute.cs
- TextReader.cs
- HotCommands.cs