| ClientUserSslCertImportFromBuffer Method | 
            Imports an SSL public certificate to a user's certificate store.
            
 
Namespace: MOVEit.DMZ.APIAssembly: MOVEit.DMZ.API (in MOVEit.DMZ.API.dll) Version: 9.0.0.0
 Syntax
Syntaxpublic bool UserSslCertImportFromBuffer(
	string Username,
	string Buffer
)
Public Function UserSslCertImportFromBuffer ( 
	Username As String,
	Buffer As String
) As Boolean
public:
bool UserSslCertImportFromBuffer(
	String^ Username, 
	String^ Buffer
)
Parameters
- Username
- Type: SystemString
 Username of user to add cert for.
- Buffer
- Type: SystemString
 String containing Base-64 encoded SSL public certificate data.
Return Value
Type: 
Booleantrue if successful; otherwise, 
false.
 Remarks
Remarks
            The contents of the certificate should be placed in the Buffer argument, and must be a Base-64 encoded
            public-only certificate. Do not use DER or other encodings.
            
 See Also
See Also