GetClientCodePage

Description

Returns a String describing the client's code page (for example, "1252 (ANSI - Latin I)" or "20127 (US-ASCII)"). On the UNIX™ and Linux™ systems, this method returns the string, UNIX client and does not contain information about the actual settings.

This method does not require the Session to be logged in.

Note: This method became available in version 2003.06.00.

Syntax

VBScript


adminSession.GetClientCodePage 

Perl


$adminSession->GetClientCodePage(); 
Identifier
Description
adminSession
The AdminSession object representing the current schema repository access session.
Return value
Returns a String describing the client's code page setting. On the UNIX and Linux systems, this method returns the string, UNIX client and does not contain information about the actual settings.

Examples

VBScript


myClientCP = adminSession.GetClientCodePage 

Perl


$myClientCP = $adminSession->GetClientCodePage();