soaperr.idl
来自「Windows CE 6.0 Server 源码」· IDL 代码 · 共 55 行
IDL
55 行
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft shared
// source or premium shared source license agreement under which you licensed
// this source code. If you did not accept the terms of the license agreement,
// you are not authorized to use this source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the SOURCE.RTF on your install media or the root of your tools installation.
// THE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
//
// Soaperr.idl : IDL source for the ISoapError interface
//
// This file will be processed by the MIDL tool to
// produce the type library (soapmsg.tlb) and marshalling code.
// {EDABBFA8-E126-402d-B65D-4EFAC1405F6E}
// IMPLEMENT_OLECREATE(<<class>>, <<external_name>>,
// 0xedabbfa8, 0xe126, 0x402d, 0xb6, 0x5d, 0x4e, 0xfa, 0xc1, 0x40, 0x5f, 0x6e);
#include "SoapMsgIds.h"
#ifdef SOAP_INTERFACES
LOCAL_INTERFACE(UUID_ISOAPERROR, SOAP_SDK_VERSION, "ISOAPError Interface")
interface ISOAPError : IUnknown
{
[propget, id(DISPID_SOAPERROR_CODE), helpstring("SOAP defined fault code")]
HRESULT faultcode(
[out, retval] BSTR * bstrFaultcode);
[propget, id(DISPID_SOAPERROR_STRING), helpstring("Brief explanation of the SOAP fault")]
HRESULT faultstring(
[out, retval] BSTR * bstrFaultstring);
[propget, id(DISPID_SOAPERROR_ACTOR), helpstring("Information about the source of the fault")]
HRESULT faultactor(
[out, retval] BSTR * bstrActor);
[propget, id(DISPID_SOAPERROR_DETAIL), helpstring("Detailed fault information")]
HRESULT detail(
[out, retval] BSTR * bstrDetail);
[propget, id(DISPID_SOAPERROR_NAMESPACE), helpstring("Namespace for the SOAP fault")]
HRESULT faultcodeNS(
[out, retval] BSTR * bstrNamespace);
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?