|
이 문서는 수동으로 번역한 것입니다. 원본 텍스트를 보려면 포인터를 문서의 문장 위로 올리십시오.
|
번역
원본
|
Message 클래스
.NET Framework 4
System.Object
System.Web.Services.Description.DocumentableItem
System.Web.Services.Description.NamedItem
System.Web.Services.Description.Message
System.Web.Services.Description.DocumentableItem
System.Web.Services.Description.NamedItem
System.Web.Services.Description.Message
어셈블리: System.Web.Services(System.Web.Services.dll)
Message 형식에서는 다음과 같은 멤버를 노출합니다.
| 이름 | 설명 | |
|---|---|---|
![]() | Documentation | |
![]() | DocumentationElement | |
![]() | ExtensibleAttributes | |
![]() | Extensions | |
![]() | Name | |
![]() | Namespaces | |
![]() | Parts | |
![]() | ServiceDescription |
| 이름 | 설명 | |
|---|---|---|
![]() | Equals(Object) | |
![]() | Finalize | 가비지 수집자 에서 회수하기 전에 개체에서 리소스를 해제하고 다른 정리 작업을 수행할 수 있게 합니다. |
![]() | FindPartByName | |
![]() | FindPartsByName | |
![]() | GetHashCode | |
![]() | GetType | |
![]() | MemberwiseClone | |
![]() | ToString |
// Creates a Message with name = messageName having one MessagePart // with name = partName. public static Message CreateMessage(string messageName,string partName, string element,string targetNamespace) { Message myMessage = new Message(); myMessage.Name = messageName; // <Snippet11> MessagePart myMessagePart = new MessagePart(); myMessagePart.Name = partName; myMessagePart.Element = new XmlQualifiedName(element,targetNamespace); myMessage.Parts.Add(myMessagePart); // </Snippet6> return myMessage; }
Windows 7, Windows Vista SP1 이상, Windows XP SP3, Windows XP SP2 x64 버전, Windows Server 2008(Server Core는 지원되지 않음), Windows Server 2008 R2(Server Core는 SP1 이상에서 지원됨), Windows Server 2003 SP2
.NET Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.
