本文整理匯總了TypeScript中ice.Ice.currentEncoding方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Ice.currentEncoding方法的具體用法?TypeScript Ice.currentEncoding怎麽用?TypeScript Ice.currentEncoding使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ice.Ice
的用法示例。
在下文中一共展示了Ice.currentEncoding方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: allTests
//.........這裏部分代碼省略.........
b1 = communicator.stringToProxy("test -f 'facet@test'");
test(b1.ice_getIdentity().name === "test" && b1.ice_getIdentity().category.length === 0 &&
b1.ice_getFacet() === "facet@test" && b1.ice_getAdapterId().length === 0);
b1 = communicator.stringToProxy("test -f 'facet@test'@test");
test(b1.ice_getIdentity().name === "test" && b1.ice_getIdentity().category.length === 0 &&
b1.ice_getFacet() === "facet@test" && b1.ice_getAdapterId() === "test");
try
{
b1 = communicator.stringToProxy("test -f facet@test @test");
test(false);
}
catch(ex)
{
test(ex instanceof Ice.ProxyParseException, ex);
}
b1 = communicator.stringToProxy("test");
test(b1.ice_isTwoway());
b1 = communicator.stringToProxy("test -t");
test(b1.ice_isTwoway());
b1 = communicator.stringToProxy("test -o");
test(b1.ice_isOneway());
b1 = communicator.stringToProxy("test -O");
test(b1.ice_isBatchOneway());
b1 = communicator.stringToProxy("test -d");
test(b1.ice_isDatagram());
b1 = communicator.stringToProxy("test -D");
test(b1.ice_isBatchDatagram());
b1 = communicator.stringToProxy("test");
test(!b1.ice_isSecure());
b1 = communicator.stringToProxy("test -s");
test(b1.ice_isSecure());
test(b1.ice_getEncodingVersion().equals(Ice.currentEncoding()));
b1 = communicator.stringToProxy("test -e 1.0");
test(b1.ice_getEncodingVersion().major === 1 && b1.ice_getEncodingVersion().minor === 0);
b1 = communicator.stringToProxy("test -e 6z.5");
test(b1.ice_getEncodingVersion().major === 6 && b1.ice_getEncodingVersion().minor === 5);
b1 = communicator.stringToProxy("test -p 1.0 -e 1.0");
test(b1.toString() === "test -t -e 1.0");
b1 = communicator.stringToProxy("test -p 6.5 -e 1.0");
test(b1.toString() === "test -t -p 6.5 -e 1.0");
try
{
b1 = communicator.stringToProxy("test:" + defaultProtocol + "@adapterId");
test(false);
}
catch(ex)
{
test(ex instanceof Ice.EndpointParseException, ex);
}
try
{
b1 = communicator.stringToProxy("test::" + defaultProtocol);
test(false);
}
catch(ex)
{
test(ex instanceof Ice.EndpointParseException, ex);
}