Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- ErrorWebPart.cs
- PartialCachingAttribute.cs
- ListViewTableRow.cs
- ToolStripSplitStackLayout.cs
- UserControlParser.cs
- XPathNavigator.cs
- EraserBehavior.cs
- ToolStripArrowRenderEventArgs.cs
- HtmlWindowCollection.cs
- ConstantProjectedSlot.cs
- ObjectDataSource.cs
- UdpDiscoveryMessageFilter.cs
- SecurityException.cs
- ProgressPage.cs
- ToolStripItemImageRenderEventArgs.cs
- FloatSumAggregationOperator.cs
- __FastResourceComparer.cs
- Exceptions.cs
- SHA256.cs
- LockCookie.cs
- InputBuffer.cs
- Rotation3DAnimationBase.cs
- CheckBoxList.cs
- Vector.cs
- ExpressionNode.cs
- DataControlFieldCollection.cs
- PolicyVersionConverter.cs
- TTSVoice.cs
- Permission.cs
- PageCodeDomTreeGenerator.cs
- DragDeltaEventArgs.cs
- Regex.cs
- SafeFileHandle.cs
- Expression.cs
- CodeConditionStatement.cs
- ISO2022Encoding.cs
- SmtpAuthenticationManager.cs
- JapaneseLunisolarCalendar.cs
- BCLDebug.cs
- TheQuery.cs
- HttpCacheVary.cs
- TreeViewAutomationPeer.cs
- XmlDocumentSerializer.cs
- Point.cs
- EntityConnectionStringBuilderItem.cs
- LogicalChannel.cs
- LingerOption.cs
- TabControl.cs
- CallbackValidatorAttribute.cs
- CompressionTransform.cs
- TokenizerHelper.cs
- EventBuilder.cs
- ParserOptions.cs
- SqlVersion.cs
- OleDbException.cs
- IPAddress.cs
- AnnotationStore.cs
- HealthMonitoringSectionHelper.cs
- TreeNode.cs
- WebPartZoneCollection.cs
- _SingleItemRequestCache.cs
- SelectionUIHandler.cs
- SchemaSetCompiler.cs
- DrawingGroup.cs
- DataRowView.cs
- PanelStyle.cs
- WebReferencesBuildProvider.cs
- ToolStripRenderer.cs
- MetadataFile.cs
- ContentFilePart.cs
- DesignerFrame.cs
- Peer.cs
- TextBlock.cs
- DefaultAssemblyResolver.cs
- EndpointPerformanceCounters.cs
- CodeDelegateInvokeExpression.cs
- AddressHeaderCollectionElement.cs
- ItemContainerPattern.cs
- VisualCollection.cs
- DomainConstraint.cs
- DayRenderEvent.cs
- AttributeData.cs
- GeometryCollection.cs
- UserControlBuildProvider.cs
- RegisteredHiddenField.cs
- DataGridViewRow.cs
- FileController.cs
- RefExpr.cs
- FixedSOMElement.cs
- MobileContainerDesigner.cs
- NegatedCellConstant.cs
- Help.cs
- loginstatus.cs
- DebuggerAttributes.cs
- MessageHeaderInfoTraceRecord.cs
- FileLogRecord.cs
- Utils.cs
- SecurityUniqueId.cs
- AppSettingsExpressionBuilder.cs
- ToolStripGrip.cs