Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartConnectionsConfigureVerb.cs / 1 / WebPartConnectionsConfigureVerb.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; internal sealed class WebPartConnectionsConfigureVerb : 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.WebPartConnectionsConfigureVerb_Description) ] public override string Description { get { object o = ViewState["Description"]; return (o == null) ? SR.GetString(SR.WebPartConnectionsConfigureVerb_Description) : (string)o; } set { ViewState["Description"] = value; } } [ WebSysDefaultValue(SR.WebPartConnectionsConfigureVerb_Text) ] public override string Text { get { object o = ViewState["Text"]; return (o == null) ? SR.GetString(SR.WebPartConnectionsConfigureVerb_Text) : (string)o; } set { ViewState["Text"] = value; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- xsdvalidator.cs
- MLangCodePageEncoding.cs
- Matrix.cs
- Sql8ConformanceChecker.cs
- WizardPanelChangingEventArgs.cs
- DataGridAutoGeneratingColumnEventArgs.cs
- ScriptControlDescriptor.cs
- SqlIdentifier.cs
- LiteralControl.cs
- DescendentsWalker.cs
- ScrollBarRenderer.cs
- InvalidEnumArgumentException.cs
- SemaphoreFullException.cs
- Parser.cs
- ElementHost.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- CodeEventReferenceExpression.cs
- FixedPageAutomationPeer.cs
- ObjectDataSourceMethodEventArgs.cs
- RijndaelManaged.cs
- UseManagedPresentationElement.cs
- XmlEventCache.cs
- SEHException.cs
- ProjectionPruner.cs
- CallContext.cs
- ApplicationServiceHelper.cs
- Animatable.cs
- StateBag.cs
- GeneralTransform3DGroup.cs
- Byte.cs
- Dictionary.cs
- DbParameterHelper.cs
- ListViewDesigner.cs
- DefaultMemberAttribute.cs
- TextEditorDragDrop.cs
- CompletionCallbackWrapper.cs
- HwndSourceParameters.cs
- SapiAttributeParser.cs
- WebPartUserCapability.cs
- ProfileBuildProvider.cs
- StackSpiller.cs
- RpcResponse.cs
- DateTimeValueSerializerContext.cs
- UpdateProgress.cs
- CodeStatementCollection.cs
- PreloadedPackages.cs
- TypeDelegator.cs
- indexingfiltermarshaler.cs
- HttpRequestWrapper.cs
- WebPartDeleteVerb.cs
- ControlIdConverter.cs
- PassportAuthentication.cs
- ClockGroup.cs
- TCPListener.cs
- EUCJPEncoding.cs
- Int16KeyFrameCollection.cs
- LongValidatorAttribute.cs
- COM2PictureConverter.cs
- BitmapEffectDrawingContent.cs
- ItemsPanelTemplate.cs
- MetaModel.cs
- NotificationContext.cs
- VBIdentifierNameEditor.cs
- TypeDependencyAttribute.cs
- DataFormats.cs
- Vector3DKeyFrameCollection.cs
- AdRotator.cs
- RangeBase.cs
- CaseInsensitiveComparer.cs
- XhtmlBasicPanelAdapter.cs
- ColorConverter.cs
- PackUriHelper.cs
- AssemblyNameProxy.cs
- XmlSchemaComplexContentRestriction.cs
- SmtpNtlmAuthenticationModule.cs
- IOThreadTimer.cs
- Update.cs
- AdornerDecorator.cs
- LaxModeSecurityHeaderElementInferenceEngine.cs
- CollectionViewGroupRoot.cs
- ConfigurationManagerInternal.cs
- TextFormatterContext.cs
- XmlIlTypeHelper.cs
- EDesignUtil.cs
- DataGridRowDetailsEventArgs.cs
- EntityDataSourceContainerNameConverter.cs
- TraceRecords.cs
- LinkArea.cs
- DataBoundControlAdapter.cs
- DelayedRegex.cs
- RightsController.cs
- SqlDeflator.cs
- InternalBufferManager.cs
- TreeNodeBinding.cs
- DetailsViewInsertedEventArgs.cs
- BoundingRectTracker.cs
- DataGridViewRowCollection.cs
- SqlGenericUtil.cs
- _ContextAwareResult.cs
- ColorBuilder.cs