 | CSTRIGenGroupName Method (String, String, String, String) |
Generate a group name string
from type string, database and channel(optional) strings..
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void IGenGroupName(
string istr1,
string istr2,
string istr3,
ref string ostr
)
public static void IGenGroupName(
string istr1,
string istr2,
string istr3,
ref string ostr
)
Public Shared Sub IGenGroupName (
istr1 As String,
istr2 As String,
istr3 As String,
ByRef ostr As String
)
Public Shared Sub IGenGroupName (
istr1 As String,
istr2 As String,
istr3 As String,
ByRef ostr As String
)
public:
static void IGenGroupName(
String^ istr1,
String^ istr2,
String^ istr3,
String^% ostr
)
public:
static void IGenGroupName(
String^ istr1,
String^ istr2,
String^ istr3,
String^% ostr
)
static member IGenGroupName :
istr1 : string *
istr2 : string *
istr3 : string *
ostr : string byref -> unit
static member IGenGroupName :
istr1 : string *
istr2 : string *
istr3 : string *
ostr : string byref -> unit
Parameters
- istr1
- Type: SystemString
Input type string (static part) - istr2
- Type: SystemString
Input db string - istr3
- Type: SystemString
Input ch string (could be 0 length) - ostr
- Type: SystemString
Output group name string
Remarks
The output group name string is formed in the way of typestr_dbstr_chstr.
If the database/channel strings is too long to fit the output string
(max total length of 1040, including the NULL ending), then
the typestr will always be kept the full length to be the first part,
while the dbstr and/or chstr will be shortened to be the
second and/or third part of the output string.
See Also