 | CSTRIGenGroupName Method (CGXNETCore, String, String, String, String, Int32) |
Generate a group name string
from type string, database and channel(optional) strings..
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void IGenGroupName(
CGXNETCore gxNetShared,
string istr1,
string istr2,
string istr3,
ref string ostr,
int size
)
public static void IGenGroupName(
CGXNETCore gxNetShared,
string istr1,
string istr2,
string istr3,
ref string ostr,
int size
)
Public Shared Sub IGenGroupName (
gxNetShared As CGXNETCore,
istr1 As String,
istr2 As String,
istr3 As String,
ByRef ostr As String,
size As Integer
)
Public Shared Sub IGenGroupName (
gxNetShared As CGXNETCore,
istr1 As String,
istr2 As String,
istr3 As String,
ByRef ostr As String,
size As Integer
)
public:
static void IGenGroupName(
CGXNETCore^ gxNetShared,
String^ istr1,
String^ istr2,
String^ istr3,
String^% ostr,
int size
)
public:
static void IGenGroupName(
CGXNETCore^ gxNetShared,
String^ istr1,
String^ istr2,
String^ istr3,
String^% ostr,
int size
)
static member IGenGroupName :
gxNetShared : CGXNETCore *
istr1 : string *
istr2 : string *
istr3 : string *
ostr : string byref *
size : int -> unit
static member IGenGroupName :
gxNetShared : CGXNETCore *
istr1 : string *
istr2 : string *
istr3 : string *
ostr : string byref *
size : int -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - 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 - size
- Type: SystemInt32
Output buffer lengths (maximum 32)
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