Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- X509Utils.cs
- LinkedResourceCollection.cs
- InstanceContextMode.cs
- RotateTransform3D.cs
- MulticastDelegate.cs
- ControlParser.cs
- DataGridItemCollection.cs
- DataGridToolTip.cs
- ISCIIEncoding.cs
- WebRequestModuleElement.cs
- CorrelationService.cs
- Array.cs
- TextElementEnumerator.cs
- StatusBarDesigner.cs
- EnumConverter.cs
- RelatedCurrencyManager.cs
- SecurityUtils.cs
- ConfigurationValue.cs
- Root.cs
- ListViewGroup.cs
- ColumnMapVisitor.cs
- HtmlShim.cs
- MembershipAdapter.cs
- XmlSiteMapProvider.cs
- GraphicsPathIterator.cs
- TriggerActionCollection.cs
- DeviceContexts.cs
- TraceInternal.cs
- ProfessionalColors.cs
- IPEndPoint.cs
- MetadataFile.cs
- basemetadatamappingvisitor.cs
- Soap12ProtocolImporter.cs
- ListBox.cs
- DockProviderWrapper.cs
- ProfileSettings.cs
- AccessViolationException.cs
- ReadOnlyDataSource.cs
- EntityViewGenerator.cs
- WebContentFormatHelper.cs
- COM2ComponentEditor.cs
- storagemappingitemcollection.viewdictionary.cs
- DataTemplateSelector.cs
- CheckBox.cs
- Timeline.cs
- ConsoleEntryPoint.cs
- MultiSelector.cs
- DesigntimeLicenseContext.cs
- EpmSourcePathSegment.cs
- XmlValidatingReaderImpl.cs
- EntryPointNotFoundException.cs
- ImageSource.cs
- ISAPIApplicationHost.cs
- ValidatorAttribute.cs
- CorrelationScope.cs
- Pointer.cs
- InvalidOleVariantTypeException.cs
- MessageContractAttribute.cs
- DataTableReaderListener.cs
- LifetimeServices.cs
- LabelLiteral.cs
- ConvertersCollection.cs
- DocumentCollection.cs
- SqlCharStream.cs
- ServiceContractViewControl.Designer.cs
- FontStyles.cs
- BuildResultCache.cs
- SetState.cs
- DataRelation.cs
- TextWriterTraceListener.cs
- PageCatalogPart.cs
- WmfPlaceableFileHeader.cs
- loginstatus.cs
- ClonableStack.cs
- ImageIndexConverter.cs
- Operand.cs
- PolyQuadraticBezierSegment.cs
- StringArrayConverter.cs
- AnonymousIdentificationSection.cs
- ColorKeyFrameCollection.cs
- EditorAttribute.cs
- JavaScriptObjectDeserializer.cs
- mactripleDES.cs
- SqlDataSourceView.cs
- EventDescriptorCollection.cs
- DataGridViewTextBoxColumn.cs
- CompileXomlTask.cs
- ColorMatrix.cs
- XmlSchemaComplexContentExtension.cs
- MarshalByValueComponent.cs
- SchemaTableOptionalColumn.cs
- RotateTransform3D.cs
- CodeDomConfigurationHandler.cs
- COM2PictureConverter.cs
- GeneralTransform2DTo3D.cs
- UpdateCommandGenerator.cs
- WebHttpBindingCollectionElement.cs
- Rectangle.cs
- DefaultValueAttribute.cs
- BlobPersonalizationState.cs