amdcc.org Send comments on this topic.
GetBioAssay Method
See Also 
amdcc.org.webservices Namespace > BioAssayWebService Class : GetBioAssay Method




BioAssayID
This method will return details about BioAssay for a matching Assay ID

Syntax

Visual Basic (Declaration) 
<WebMethodAttribute("This method will return a BioAssay for the specified matching BioAssayID ")>
Public Function GetBioAssay( _
   ByVal BioAssayID As Integer _
) As BioAssay
Visual Basic (Usage)Copy Code
Dim instance As BioAssayWebService
Dim BioAssayID As Integer
Dim value As BioAssay
 
value = instance.GetBioAssay(BioAssayID)
C# 
[WebMethodAttribute("This method will return a BioAssay for the specified matching BioAssayID ")]
public BioAssay GetBioAssay( 
   int BioAssayID
)
Managed Extensions for C++ 
[WebMethodAttribute("This method will return a BioAssay for the specified matching BioAssayID ")]
public: BioAssay GetBioAssay( 
   int BioAssayID
) 
C++/CLI 
[WebMethodAttribute("This method will return a BioAssay for the specified matching BioAssayID ")]
public:
BioAssay GetBioAssay( 
   int BioAssayID
) 

Parameters

BioAssayID

Return Value

BioAssay

Example

BioAssay bioAssay = BioAssayMgr.GetBioAssay(BioAssayID);

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