Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartDescription.cs / 1 / WebPartDescription.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)] public class WebPartDescription { private string _id; private string _title; private string _description; private string _imageUrl; private WebPart _part; private WebPartDescription() { } public WebPartDescription(string id, string title, string description, string imageUrl) { if (String.IsNullOrEmpty(id)) { throw new ArgumentNullException("id"); } if (String.IsNullOrEmpty(title)) { throw new ArgumentNullException("title"); } _id = id; _title = title; _description = (description != null) ? description : String.Empty; _imageUrl = (imageUrl != null) ? imageUrl : String.Empty; } public WebPartDescription(WebPart part) { string id = part.ID; if (String.IsNullOrEmpty(id)) { throw new ArgumentException(SR.GetString(SR.WebPartManager_NoWebPartID), "part"); } _id = id; string displayTitle = part.DisplayTitle; _title = (displayTitle != null) ? displayTitle : String.Empty; string description = part.Description; _description = (description != null) ? description : String.Empty; string imageUrl = part.CatalogIconImageUrl; _imageUrl = (imageUrl != null) ? imageUrl : String.Empty; _part = part; } public string CatalogIconImageUrl { get { return _imageUrl; } } public string Description { get { return _description; } } public string ID { get { return _id; } } public string Title { get { return _title; } } internal WebPart WebPart { get { return _part; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)] public class WebPartDescription { private string _id; private string _title; private string _description; private string _imageUrl; private WebPart _part; private WebPartDescription() { } public WebPartDescription(string id, string title, string description, string imageUrl) { if (String.IsNullOrEmpty(id)) { throw new ArgumentNullException("id"); } if (String.IsNullOrEmpty(title)) { throw new ArgumentNullException("title"); } _id = id; _title = title; _description = (description != null) ? description : String.Empty; _imageUrl = (imageUrl != null) ? imageUrl : String.Empty; } public WebPartDescription(WebPart part) { string id = part.ID; if (String.IsNullOrEmpty(id)) { throw new ArgumentException(SR.GetString(SR.WebPartManager_NoWebPartID), "part"); } _id = id; string displayTitle = part.DisplayTitle; _title = (displayTitle != null) ? displayTitle : String.Empty; string description = part.Description; _description = (description != null) ? description : String.Empty; string imageUrl = part.CatalogIconImageUrl; _imageUrl = (imageUrl != null) ? imageUrl : String.Empty; _part = part; } public string CatalogIconImageUrl { get { return _imageUrl; } } public string Description { get { return _description; } } public string ID { get { return _id; } } public string Title { get { return _title; } } internal WebPart WebPart { get { return _part; } } } } // 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
- ListBindableAttribute.cs
- SqlDataSourceStatusEventArgs.cs
- MetadataPropertyAttribute.cs
- TakeQueryOptionExpression.cs
- ObjectReaderCompiler.cs
- FieldMetadata.cs
- ConfigurationLoaderException.cs
- ScrollChrome.cs
- CLRBindingWorker.cs
- ResourcesBuildProvider.cs
- AsyncCompletedEventArgs.cs
- ConfigurationStrings.cs
- LOSFormatter.cs
- ParameterElementCollection.cs
- PointValueSerializer.cs
- DeclarativeCatalogPartDesigner.cs
- BindValidator.cs
- AccessKeyManager.cs
- DataGridViewColumn.cs
- LogExtent.cs
- XamlSerializerUtil.cs
- FormatConvertedBitmap.cs
- UserControlAutomationPeer.cs
- PreProcessInputEventArgs.cs
- Configuration.cs
- SmiGettersStream.cs
- FileDialog.cs
- ListCollectionView.cs
- GroupStyle.cs
- IdentityNotMappedException.cs
- CodeTypeMemberCollection.cs
- PanelContainerDesigner.cs
- Pair.cs
- IDQuery.cs
- ExpressionReplacer.cs
- UICuesEvent.cs
- MaskInputRejectedEventArgs.cs
- InvalidPrinterException.cs
- GenericRootAutomationPeer.cs
- ClientApiGenerator.cs
- DocumentPropertiesDialog.cs
- DataGridViewTopLeftHeaderCell.cs
- AnnotationResourceCollection.cs
- DataGridRowAutomationPeer.cs
- DetailsViewDeleteEventArgs.cs
- webproxy.cs
- WindowsHyperlink.cs
- XmlRawWriterWrapper.cs
- BaseParagraph.cs
- MediaElement.cs
- FormsAuthenticationEventArgs.cs
- WinEventHandler.cs
- SiteMapProvider.cs
- Context.cs
- LocalClientSecuritySettingsElement.cs
- ResourceDictionary.cs
- MouseWheelEventArgs.cs
- DependencyPropertyConverter.cs
- StandardCommands.cs
- HttpListenerRequestTraceRecord.cs
- GridLengthConverter.cs
- BitmapImage.cs
- externdll.cs
- RouteParser.cs
- ServiceDesigner.xaml.cs
- ResXBuildProvider.cs
- FontFaceLayoutInfo.cs
- EncodingTable.cs
- DataBindingsDialog.cs
- ConnectorRouter.cs
- TileBrush.cs
- XmlSchemaProviderAttribute.cs
- DemultiplexingDispatchMessageFormatter.cs
- BindingExpressionUncommonField.cs
- COM2ExtendedUITypeEditor.cs
- ScrollViewerAutomationPeer.cs
- XslTransform.cs
- AccessorTable.cs
- FixedSchema.cs
- WebConfigurationFileMap.cs
- ExpressionBindingCollection.cs
- HttpCacheParams.cs
- FailedToStartupUIException.cs
- TemplatePropertyEntry.cs
- RowUpdatedEventArgs.cs
- StreamReader.cs
- AsnEncodedData.cs
- PrintControllerWithStatusDialog.cs
- AlternateViewCollection.cs
- CollectionChangeEventArgs.cs
- DoubleCollection.cs
- TablePattern.cs
- TextSpanModifier.cs
- ItemType.cs
- HandleRef.cs
- BaseTemplateCodeDomTreeGenerator.cs
- ComEventsSink.cs
- ContactManager.cs
- DataGridViewRowStateChangedEventArgs.cs
- RelationshipFixer.cs