Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartConnectionsConnectVerb.cs / 1305376 / WebPartConnectionsConnectVerb.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; internal sealed class WebPartConnectionsConnectVerb : 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.WebPartConnectionsConnectVerb_Description) ] public override string Description { get { object o = ViewState["Description"]; return (o == null) ? SR.GetString(SR.WebPartConnectionsConnectVerb_Description) : (string)o; } set { ViewState["Description"] = value; } } [ WebSysDefaultValue(SR.WebPartConnectionsConnectVerb_Text) ] public override string Text { get { object o = ViewState["Text"]; return (o == null) ? SR.GetString(SR.WebPartConnectionsConnectVerb_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
- BehaviorEditorPart.cs
- FilteredDataSetHelper.cs
- ExitEventArgs.cs
- NGCSerializerAsync.cs
- CheckBox.cs
- FileStream.cs
- RootDesignerSerializerAttribute.cs
- BStrWrapper.cs
- SingleBodyParameterMessageFormatter.cs
- ContextMenuAutomationPeer.cs
- KnownBoxes.cs
- DataControlFieldHeaderCell.cs
- Parser.cs
- HostProtectionException.cs
- SqlCommandSet.cs
- DataProtectionSecurityStateEncoder.cs
- FontCacheUtil.cs
- SiteMapPath.cs
- CodeMemberProperty.cs
- WebPartCatalogAddVerb.cs
- HttpCookie.cs
- AssemblyBuilderData.cs
- WindowsAuthenticationEventArgs.cs
- AdCreatedEventArgs.cs
- DiscoveryClientDocuments.cs
- DoubleIndependentAnimationStorage.cs
- EventLogPermissionEntry.cs
- EncryptedKey.cs
- IndexedString.cs
- DatagridviewDisplayedBandsData.cs
- AuthenticationService.cs
- WeakEventTable.cs
- HashHelper.cs
- ToolBarOverflowPanel.cs
- GregorianCalendarHelper.cs
- RegexRunnerFactory.cs
- FileEnumerator.cs
- SmtpDigestAuthenticationModule.cs
- InputGestureCollection.cs
- SslSecurityTokenParameters.cs
- DesignerActionList.cs
- RadioButtonRenderer.cs
- ComAdminWrapper.cs
- WindowsGraphicsCacheManager.cs
- CompilerTypeWithParams.cs
- GatewayDefinition.cs
- GetWinFXPath.cs
- AvTrace.cs
- HotSpot.cs
- SignatureDescription.cs
- DataGridCheckBoxColumn.cs
- Page.cs
- TraceData.cs
- SemanticResolver.cs
- Mapping.cs
- Operators.cs
- AvTraceDetails.cs
- ScrollChangedEventArgs.cs
- ColorInterpolationModeValidation.cs
- AlternateView.cs
- LinkedResource.cs
- TrackBarRenderer.cs
- Variable.cs
- InternalMappingException.cs
- HostedNamedPipeTransportManager.cs
- MobileListItemCollection.cs
- XmlLangPropertyAttribute.cs
- BindingOperations.cs
- fixedPageContentExtractor.cs
- HideDisabledControlAdapter.cs
- ParsedAttributeCollection.cs
- DirectoryNotFoundException.cs
- TaiwanLunisolarCalendar.cs
- LogRestartAreaEnumerator.cs
- ServiceRoute.cs
- MetadataResolver.cs
- AsyncPostBackErrorEventArgs.cs
- Deserializer.cs
- SharedStream.cs
- SchemaType.cs
- CharStorage.cs
- Utils.cs
- PauseStoryboard.cs
- DoubleAnimation.cs
- Math.cs
- WebEvents.cs
- GestureRecognitionResult.cs
- SocketInformation.cs
- RSAPKCS1KeyExchangeFormatter.cs
- XsltContext.cs
- AlignmentXValidation.cs
- RootBrowserWindowAutomationPeer.cs
- Variable.cs
- MsmqIntegrationProcessProtocolHandler.cs
- TextElementEnumerator.cs
- ProjectionPlanCompiler.cs
- HttpRuntimeSection.cs
- FontStretches.cs
- ItemContainerGenerator.cs
- ObjectConverter.cs