Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartEditorApplyVerb.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- httpserverutility.cs
- OleStrCAMarshaler.cs
- XmlCharacterData.cs
- recordstatescratchpad.cs
- MemberRelationshipService.cs
- DecoderReplacementFallback.cs
- IgnoreDataMemberAttribute.cs
- StyleCollection.cs
- PersonalizableTypeEntry.cs
- WorkflowWebHostingModule.cs
- ArgumentNullException.cs
- ImportContext.cs
- SqlHelper.cs
- MergePropertyDescriptor.cs
- TokenBasedSet.cs
- TransformDescriptor.cs
- PlanCompilerUtil.cs
- sqlser.cs
- OleDbConnectionFactory.cs
- DbConnectionHelper.cs
- SqlVisitor.cs
- AddInProcess.cs
- QueryInterceptorAttribute.cs
- activationcontext.cs
- TreeNode.cs
- DictionaryManager.cs
- CacheDependency.cs
- PartialArray.cs
- ResourcePermissionBase.cs
- CroppedBitmap.cs
- TypeElementCollection.cs
- SchemaImporter.cs
- HeaderedItemsControl.cs
- DependencyStoreSurrogate.cs
- ActivityXamlServices.cs
- DbConnectionPoolGroup.cs
- HtmlString.cs
- InfoCardCryptoHelper.cs
- IsolatedStorageException.cs
- XamlPathDataSerializer.cs
- TCPListener.cs
- BindingMemberInfo.cs
- SafeArchiveContext.cs
- UMPAttributes.cs
- PixelShader.cs
- PrivateFontCollection.cs
- UIElement3D.cs
- BindingMAnagerBase.cs
- StandardToolWindows.cs
- IndexOutOfRangeException.cs
- ValueProviderWrapper.cs
- EventListenerClientSide.cs
- SamlDoNotCacheCondition.cs
- SoapFault.cs
- WebProxyScriptElement.cs
- SQLInt32Storage.cs
- DelayedRegex.cs
- RenderingBiasValidation.cs
- NavigationProperty.cs
- CodeEventReferenceExpression.cs
- DataTableMappingCollection.cs
- EntityException.cs
- ValidationHelper.cs
- SqlStream.cs
- XmlObjectSerializer.cs
- MembershipSection.cs
- XPathParser.cs
- UriScheme.cs
- File.cs
- Barrier.cs
- ClientCredentialsElement.cs
- TypedDatasetGenerator.cs
- ResXResourceReader.cs
- ResourcePermissionBase.cs
- GeneralTransform3DGroup.cs
- RadioButton.cs
- MsmqIntegrationChannelFactory.cs
- WindowsListViewItemStartMenu.cs
- KeyManager.cs
- ToolStripPanelRow.cs
- GetPageCompletedEventArgs.cs
- MsmqInputChannelListenerBase.cs
- ServiceObjectContainer.cs
- FirstMatchCodeGroup.cs
- StructuredTypeEmitter.cs
- QueryOpcode.cs
- IndexerNameAttribute.cs
- DataGridViewRowCancelEventArgs.cs
- ViewSimplifier.cs
- RecognizedPhrase.cs
- COM2ColorConverter.cs
- DoubleConverter.cs
- TrackingMemoryStreamFactory.cs
- LoginUtil.cs
- RoutedEventArgs.cs
- Environment.cs
- Helpers.cs
- XPathParser.cs
- DefaultBindingPropertyAttribute.cs
- CookieProtection.cs