Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartEditorApplyVerb.cs / 1 / WebPartEditorApplyVerb.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; internal sealed class WebPartEditorApplyVerb : WebPartActionVerb { // 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.WebPartEditorApplyVerb_Description) ] public override string Description { get { object o = ViewState["Description"]; return (o == null) ? SR.GetString(SR.WebPartEditorApplyVerb_Description) : (string)o; } set { ViewState["Description"] = value; } } [ WebSysDefaultValue(SR.WebPartEditorApplyVerb_Text) ] public override string Text { get { object o = ViewState["Text"]; return (o == null) ? SR.GetString(SR.WebPartEditorApplyVerb_Text) : (string)o; } set { ViewState["Text"] = value; } } } } // 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
- validationstate.cs
- OrderedEnumerableRowCollection.cs
- TrackingValidationObjectDictionary.cs
- XmlPreloadedResolver.cs
- DataGridViewCellEventArgs.cs
- AnonymousIdentificationModule.cs
- CodeDesigner.cs
- ApplicationSecurityManager.cs
- FileDetails.cs
- WebUtil.cs
- AnnotationAuthorChangedEventArgs.cs
- Polyline.cs
- ItemDragEvent.cs
- BmpBitmapEncoder.cs
- ToolboxItemWrapper.cs
- WorkflowInspectionServices.cs
- OleStrCAMarshaler.cs
- DataGridViewRowPostPaintEventArgs.cs
- CompilerWrapper.cs
- SolidColorBrush.cs
- TreeNodeStyle.cs
- FixUpCollection.cs
- StyleSheetDesigner.cs
- VirtualDirectoryMapping.cs
- TextOutput.cs
- SoapCodeExporter.cs
- ProxyHelper.cs
- TabControlDesigner.cs
- ListBox.cs
- DynamicDiscoveryDocument.cs
- Point3DAnimationUsingKeyFrames.cs
- BuildProviderCollection.cs
- ListView.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- SafeCoTaskMem.cs
- PersonalizationStateInfo.cs
- GridItemCollection.cs
- XPathNavigator.cs
- WebHeaderCollection.cs
- PerformanceCounterCategory.cs
- ElementMarkupObject.cs
- GZipObjectSerializer.cs
- RuntimeHandles.cs
- XmlHelper.cs
- OverflowException.cs
- HashCodeCombiner.cs
- ClientCultureInfo.cs
- LabelLiteral.cs
- DesignerTextViewAdapter.cs
- PerformanceCounterPermission.cs
- XmlAttribute.cs
- RedistVersionInfo.cs
- FloaterBaseParagraph.cs
- Trustee.cs
- EventLog.cs
- RowUpdatingEventArgs.cs
- BaseCollection.cs
- TreeBuilderBamlTranslator.cs
- LicenseManager.cs
- StylusEventArgs.cs
- AutomationIdentifier.cs
- SchemaElementDecl.cs
- MaskedTextBox.cs
- ApplicationFileParser.cs
- CompressionTransform.cs
- DataGridViewSortCompareEventArgs.cs
- Image.cs
- StorageModelBuildProvider.cs
- IPAddressCollection.cs
- HandleRef.cs
- PointAnimation.cs
- Context.cs
- SerialPort.cs
- TransformerInfoCollection.cs
- QilParameter.cs
- GeometryModel3D.cs
- ObjectDataSourceDisposingEventArgs.cs
- AddInServer.cs
- TiffBitmapDecoder.cs
- CompilationLock.cs
- InvalidDocumentContentsException.cs
- StringExpressionSet.cs
- safesecurityhelperavalon.cs
- HttpCapabilitiesEvaluator.cs
- EastAsianLunisolarCalendar.cs
- EntityDescriptor.cs
- EUCJPEncoding.cs
- StaticDataManager.cs
- PropertyGridView.cs
- XmlParserContext.cs
- InvalidFilterCriteriaException.cs
- ScriptRef.cs
- ADConnectionHelper.cs
- EncoderExceptionFallback.cs
- MaskedTextBoxDesigner.cs
- DivideByZeroException.cs
- LocatorPartList.cs
- PeerCredentialElement.cs
- EnumType.cs
- GenericEnumConverter.cs