e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
46 lines
1.8 KiB
C#
46 lines
1.8 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="WebServicesDescriptionAttribute.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Web.Services {
|
|
|
|
|
|
using System;
|
|
using System.ComponentModel;
|
|
|
|
/// <include file='doc\WebServicesDescriptionAttribute.uex' path='docs/doc[@for="WebServicesDescriptionAttribute"]/*' />
|
|
/// <devdoc>
|
|
/// DescriptionAttribute marks a property, event, or extender with a
|
|
/// description. Visual designers can display this description when referencing
|
|
/// the member.
|
|
/// </devdoc>
|
|
[AttributeUsage(AttributeTargets.All)]
|
|
internal class WebServicesDescriptionAttribute : DescriptionAttribute {
|
|
|
|
private bool replaced = false;
|
|
|
|
/// <include file='doc\WebServicesDescriptionAttribute.uex' path='docs/doc[@for="WebServicesDescriptionAttribute.WebServicesDescriptionAttribute"]/*' />
|
|
/// <devdoc>
|
|
/// Constructs a new sys description.
|
|
/// </devdoc>
|
|
internal WebServicesDescriptionAttribute(string description) : base(description) {
|
|
}
|
|
|
|
/// <include file='doc\WebServicesDescriptionAttribute.uex' path='docs/doc[@for="WebServicesDescriptionAttribute.Description"]/*' />
|
|
/// <devdoc>
|
|
/// Retrieves the description text.
|
|
/// </devdoc>
|
|
public override string Description {
|
|
get {
|
|
if (!replaced) {
|
|
replaced = true;
|
|
DescriptionValue = Res.GetString(base.Description);
|
|
}
|
|
return base.Description;
|
|
}
|
|
}
|
|
}
|
|
}
|