WebServiceAttribute.Description プロパティ
アセンブリ: System.Web.Services (system.web.services.dll 内)

Dim instance As WebServiceAttribute Dim value As String value = instance.Description instance.Description = value
/** @property */ public String get_Description () /** @property */ public void set_Description (String value)
XML Web サービスの機能を説明するテキスト。


Description プロパティを "Common Server Variables" に設定する例を次に示します。
<%@ WebService Language="VB" Class= "ServerVariables"%> Imports System Imports System.Web.Services <WebService(Description := "Common Server Variables", _ Namespace := "http://www.contoso.com/")> _ Public Class ServerVariables Inherits WebService <WebMethod(Description := "Obtains the Computer Machine Name", _ EnableSession := False)> _ Public Function GetMachineName() As String Return Server.MachineName End Function End Class
<%@ WebService Language="C#" Class= "ServerVariables"%> using System; using System.Web.Services; [ WebService(Description="Common Server Variables",Namespace="http://www.contoso.com/")] public class ServerVariables: WebService { [ WebMethod(Description="Obtains the Server Computer Name",EnableSession=false)] public string GetMachineName() { return Server.MachineName; } }

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からWebServiceAttribute.Description プロパティを検索する場合は、下記のリンクをクリックしてください。

- WebServiceAttribute.Description プロパティのページへのリンク