[TIBCO.EMS .NET client library 6.3 documentation]

Set the store type for all the connection factories

Namespace:  TIBCO.EMS
Assembly:  TIBCO.EMS (in TIBCO.EMS.dll)

Syntax

public static void SetCertificateStoreType(
	EMSSSLStoreType type,
	Object storeInfo
)
Public Shared Sub SetCertificateStoreType ( _
	type As EMSSSLStoreType, _
	storeInfo As Object _
)
public:
static void SetCertificateStoreType(
	EMSSSLStoreType type, 
	Object^ storeInfo
)

Parameters

type
Type: TIBCO.EMS..::.EMSSSLStoreType
The type of certificate store. Can be either EMSSSL_STORE_TYPE_SYSTEM or EMSSSL_STORE_TYPE_FILE. See EMSSSLStoreType details.
storeInfo
Type: System..::.Object
If the store type is EMSSSL_STORE_TYPE_SYSTEM, then storeInfo must be an EMSSSLSystemStoreInfo object. If the store type is EMSSSL_STORE_TYPE_FILE, then storeInfo must be an EMSSSLFileStoreInfo object.

See Also