This method will return a list of Animals that meet the optional search criteria
Syntax
| Visual Basic (Declaration) | |
|---|
<WebMethodAttribute("This method will return a list of Animals that meet the optional search criteria")>
Public Function GetAnimalsBySearch( _
ByVal Search As AnimalSearch _
) As AnimalList |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As AnimalWebService
Dim Search As AnimalSearch
Dim value As AnimalList
value = instance.GetAnimalsBySearch(Search)
|
| C# | |
|---|
[WebMethodAttribute("This method will return a list of Animals that meet the optional search criteria")]
public AnimalList GetAnimalsBySearch(
AnimalSearch Search
) |
| Managed Extensions for C++ | |
|---|
[WebMethodAttribute("This method will return a list of Animals that meet the optional search criteria")]
public: AnimalList GetAnimalsBySearch(
AnimalSearch Search
) |
| C++/CLI | |
|---|
[WebMethodAttribute("This method will return a list of Animals that meet the optional search criteria")]
public:
AnimalList GetAnimalsBySearch(
AnimalSearch Search
) |
Parameters
- Search
Return Value
Animal List
Example
AnimalList animalList = AnimalMgr.GetAnimalsBySearch(Search);
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also