This documentation is archived and is not being maintained.
FaultBindingCollection Class
Visual Studio 2008
Represents a collection of instances of the FaultBinding class. This class cannot be inherited.
Assembly: System.Web.Services (in System.Web.Services.dll)
// Creates an Import object with namespace and location. Import^ CreateImport( String^ targetNamespace, String^ targetlocation ) { Import^ myImport = gcnew Import; myImport->Location = targetlocation; myImport->Namespace = targetNamespace; return myImport; }
// Creates an Import object with namespace and location.
Import * CreateImport(String* targetNamespace, String* targetlocation)
{
Import* myImport = new Import();
myImport->Location = targetlocation;
myImport->Namespace = targetNamespace;
return myImport;
}
System::Object
System.Collections::CollectionBase
System.Web.Services.Description::ServiceDescriptionBaseCollection
System.Web.Services.Description::FaultBindingCollection
System.Collections::CollectionBase
System.Web.Services.Description::ServiceDescriptionBaseCollection
System.Web.Services.Description::FaultBindingCollection
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: