PartServicesFindVendors Method  | 
 
            Retrieves one or more vendors based on a search string.  
            The searchCriteria parameter may contain wildcard ("*") specifiers.
            If no wildcard specifiers are used, the searchCriteria must match the vendor name exactly (not case sensitive).
            A searchCriteria of "*" will return all vendors known to the system.
            If not items are found, and empty list is returned and not exceptions are thrown.
            
 
    Namespace: 
   FactoryLogix.xTend.PartDefinition
    Assembly:
   FactoryLogix.xTend.API (in FactoryLogix.xTend.API.dll) Version: 8.254.0.0 (8.254.0.0)
Syntaxpublic IEnumerable<Vendor> FindVendors(
	Guid sessionId,
	string searchCriteria
)
Public Function FindVendors ( 
	sessionId As Guid,
	searchCriteria As String
) As IEnumerable(Of Vendor)
public:
virtual IEnumerable<Vendor^>^ FindVendors(
	Guid sessionId, 
	String^ searchCriteria
) sealed
abstract FindVendors : 
        sessionId : Guid * 
        searchCriteria : string -> IEnumerable<Vendor> 
override FindVendors : 
        sessionId : Guid * 
        searchCriteria : string -> IEnumerable<Vendor> Parameters
- sessionId
 - Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method. - searchCriteria
 - Type: SystemString
The name of the vendor or a search string with wildcard ("*") specifiers. 
Return Value
Type: 
IEnumerableVendorA list of 
Vendor objects which match the search criteria.
Exceptions
See Also