Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartConnectionsConnectVerb.cs / 1 / 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CodeCommentStatement.cs
- SessionIDManager.cs
- HttpWebRequestElement.cs
- Font.cs
- TextContainerChangedEventArgs.cs
- ByteStreamMessageEncoder.cs
- XmlComplianceUtil.cs
- ObjectListFieldCollection.cs
- StylusPointPropertyInfoDefaults.cs
- GridViewPageEventArgs.cs
- HttpStaticObjectsCollectionWrapper.cs
- DependencyProperty.cs
- HTTPNotFoundHandler.cs
- CheckBoxRenderer.cs
- ObsoleteAttribute.cs
- ValueSerializer.cs
- OperandQuery.cs
- DescendantBaseQuery.cs
- CodeBlockBuilder.cs
- XmlDownloadManager.cs
- WindowsListViewItemCheckBox.cs
- ISCIIEncoding.cs
- SafeNativeMethods.cs
- ValidatingPropertiesEventArgs.cs
- SymbolDocumentGenerator.cs
- ConfigurationSectionGroupCollection.cs
- Graphics.cs
- SystemMulticastIPAddressInformation.cs
- DropDownList.cs
- TreeViewDesigner.cs
- CfgParser.cs
- WindowsMenu.cs
- OperandQuery.cs
- FontStyles.cs
- ActivityDesigner.cs
- Scripts.cs
- DisplayNameAttribute.cs
- HtmlForm.cs
- SamlSerializer.cs
- UnsafeNativeMethods.cs
- BamlRecordReader.cs
- UnionQueryOperator.cs
- BitmapEffectGroup.cs
- MatrixUtil.cs
- SiteOfOriginContainer.cs
- PersistStreamTypeWrapper.cs
- SelectionItemPattern.cs
- AppSettings.cs
- MetadataItemSerializer.cs
- IdentityHolder.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- FormattedTextSymbols.cs
- RelAssertionDirectKeyIdentifierClause.cs
- MapPathBasedVirtualPathProvider.cs
- TextAdaptor.cs
- WebPartDescriptionCollection.cs
- DesignTimeType.cs
- UpdateCompiler.cs
- HtmlEmptyTagControlBuilder.cs
- Transform3D.cs
- ProfileSettingsCollection.cs
- Rfc4050KeyFormatter.cs
- PenThreadWorker.cs
- HtmlControlPersistable.cs
- OrderedDictionary.cs
- DataGridViewCellCollection.cs
- DataGridViewLinkCell.cs
- ResetableIterator.cs
- SqlCachedBuffer.cs
- ExpressionBindings.cs
- SqlBulkCopyColumnMappingCollection.cs
- _SafeNetHandles.cs
- WindowsGraphics2.cs
- OutputCacheProfileCollection.cs
- SqlCrossApplyToCrossJoin.cs
- TextParaLineResult.cs
- OracleInternalConnection.cs
- Set.cs
- EmbeddedMailObjectsCollection.cs
- RSAPKCS1KeyExchangeFormatter.cs
- KnownTypes.cs
- MethodBody.cs
- SafeMemoryMappedViewHandle.cs
- InstanceCreationEditor.cs
- BamlTreeUpdater.cs
- StateMachine.cs
- EventProxy.cs
- SecurityTokenAttachmentMode.cs
- DetailsViewDeleteEventArgs.cs
- MissingSatelliteAssemblyException.cs
- ContextMarshalException.cs
- ValueQuery.cs
- CellConstantDomain.cs
- ScrollChrome.cs
- UpdatePanelTriggerCollection.cs
- BitmapSource.cs
- SmtpAuthenticationManager.cs
- TCPClient.cs
- ReadOnlyState.cs
- SmiEventStream.cs