⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 soaperr.idl

📁 Windows CE 6.0 Server 源码
💻 IDL
字号:
//
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -