PartServicesFindManufacturers Method |
Retrieves one or more manufacturers based on a search string.
The searchCriteria parameter may contain wildcard ("*") specifiers.
If no wildcard specifiers are used, the searchCriteria must match the manufacturer name exactly (not case sensitive).
A searchCriteria of "*" will return all manufacturers 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.245.0.0 (8.245.0.0)
Syntax public IEnumerable<Manufacturer> FindManufacturers(
Guid sessionId,
string searchCriteria
)
Public Function FindManufacturers (
sessionId As Guid,
searchCriteria As String
) As IEnumerable(Of Manufacturer)
public:
virtual IEnumerable<Manufacturer^>^ FindManufacturers(
Guid sessionId,
String^ searchCriteria
) sealed
abstract FindManufacturers :
sessionId : Guid *
searchCriteria : string -> IEnumerable<Manufacturer>
override FindManufacturers :
sessionId : Guid *
searchCriteria : string -> IEnumerable<Manufacturer>
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 manufacturer or a search string with wildcard ("*") specifiers.
Return Value
Type:
IEnumerableManufacturerA list of
Manufacturer objects which match the search criteria.
Exceptions See Also