本文整理汇总了C#中com.GetString方法的典型用法代码示例。如果您正苦于以下问题:C# com.GetString方法的具体用法?C# com.GetString怎么用?C# com.GetString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com
的用法示例。
在下文中一共展示了com.GetString方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: _fromJSON
internal void _fromJSON(com.sybase.afx.json.JsonObject _json)
{
__key_name = (_json.GetString("key_name"));
__value = (_json.GetNullableString("value"));
__user_defined = (_json.GetBoolean("user_defined"));
}
示例2: _fromJSON
internal void _fromJSON(com.sybase.afx.json.JsonObject _json)
{
__idRepresentanteComercial = (_json.GetInt("idRepresentanteComercial"));
__usuario = (_json.GetString("usuario"));
__nombre = (_json.GetString("nombre"));
__apellido = (_json.GetString("apellido"));
__idNegocio = (_json.GetNullableInt("idNegocio"));
__codigoRRCC = (_json.GetNullableString("codigoRRCC"));
__codigoInterlocutor = (_json.GetString("codigoInterlocutor"));
__pending = (_json.GetBoolean("pending"));
__pendingChange = (_json.GetChar("pendingChange"));
__replayPending = (_json.GetLong("replayPending"));
__replayFailure = (_json.GetLong("replayFailure"));
__surrogateKey = (_json.GetLong("surrogateKey"));
__replayCounter = (_json.GetLong("_rc"));
__disableSubmit = (_json.GetBoolean("disableSubmit"));
char op_2 = _json.GetChar("_op");
_isNew = (op_2 == 'C');
_isDirty = (op_2 == 'U');
_isDeleted = (op_2 == 'D');
}
示例3: _fromJSON
internal void _fromJSON(com.sybase.afx.json.JsonObject _json)
{
__key_name = (_json.GetString("key_name"));
__user = (_json.GetString("user"));
__value = (_json.GetNullableString("value"));
__user_defined = (_json.GetBoolean("user_defined"));
__description = (_json.GetNullableString("description"));
__id = (_json.GetLong("id"));
char op_2 = _json.GetChar("_op");
_isNew = (op_2 == 'C');
_isDirty = (op_2 == 'U');
_isDeleted = (op_2 == 'D');
}
示例4: _fromJSON
internal void _fromJSON(com.sybase.afx.json.JsonObject _json)
{
__ID = (_json.GetString("ID"));
__OPERACION = (_json.GetString("OPERACION"));
__DESCRIPCION = (_json.GetString("DESCRIPCION"));
__CATEGORIA = (_json.GetString("CATEGORIA"));
__COD_TRAN_INT = (_json.GetString("COD_TRAN_INT"));
__NRO_ACTIVIDAD = (_json.GetString("NRO_ACTIVIDAD"));
__SEGMENTO = (_json.GetString("SEGMENTO"));
__NEGOCIO = (_json.GetString("NEGOCIO"));
__COD_FORMULARIO = (_json.GetString("COD_FORMULARIO"));
__PUNTAJE = (_json.GetDecimal("PUNTAJE"));
__LATITUD = (_json.GetString("LATITUD"));
__LONGITUD = (_json.GetString("LONGITUD"));
__TEXTO_0002 = (_json.GetString("TEXTO_0002"));
__TEXTO_ZR01 = (_json.GetString("TEXTO_ZR01"));
__TEXTO_ZR02 = (_json.GetString("TEXTO_ZR02"));
__TEXTO_ZR07 = (_json.GetString("TEXTO_ZR07"));
__TEXTO_ZR08 = (_json.GetString("TEXTO_ZR08"));
__TEXTO_ZR09 = (_json.GetString("TEXTO_ZR09"));
__TEXTO_ZR10 = (_json.GetString("TEXTO_ZR10"));
__TEXTO_ZR11 = (_json.GetString("TEXTO_ZR11"));
__FECHA_INI_P = (_json.GetNullableDate("FECHA_INI_P"));
__HORA_INI_P = (_json.GetNullableTime("HORA_INI_P"));
__FECHA_FIN_P = (_json.GetNullableDate("FECHA_FIN_P"));
__HORA_FIN_P = (_json.GetNullableTime("HORA_FIN_P"));
__FECHA_INI_R = (_json.GetNullableDate("FECHA_INI_R"));
__HORA_INI_R = (_json.GetNullableTime("HORA_INI_R"));
__FECHA_FIN_R = (_json.GetNullableDate("FECHA_FIN_R"));
__HORA_FIN_R = (_json.GetNullableTime("HORA_FIN_R"));
__CLIENTE = (_json.GetString("CLIENTE"));
__NOMBRE_CLIENTE = (_json.GetString("NOMBRE_CLIENTE"));
__RRCC = (_json.GetString("RRCC"));
__NOMBRE_RRCC = (_json.GetString("NOMBRE_RRCC"));
__RESPONSABLE = (_json.GetString("RESPONSABLE"));
__NOMBRE_RESPONSABLE = (_json.GetString("NOMBRE_RESPONSABLE"));
__ESTADO = (_json.GetString("ESTADO"));
__MOTIVO = (_json.GetString("MOTIVO"));
__CALLE = (_json.GetString("CALLE"));
__NUMERO = (_json.GetString("NUMERO"));
__COD_POSTAL = (_json.GetString("COD_POSTAL"));
__CIUDAD = (_json.GetString("CIUDAD"));
__PROVINCIA = (_json.GetString("PROVINCIA"));
__PAIS = (_json.GetString("PAIS"));
}
示例5: _fromJSON
internal void _fromJSON(com.sybase.afx.json.JsonObject _json)
{
__idTipoInteraccion = (_json.GetInt("idTipoInteraccion"));
__descripcion = (_json.GetString("descripcion"));
__codigoSAP = (_json.GetString("codigoSAP"));
__categoriaSAP = (_json.GetString("categoriaSAP"));
__pending = (_json.GetBoolean("pending"));
__pendingChange = (_json.GetChar("pendingChange"));
__replayPending = (_json.GetLong("replayPending"));
__replayFailure = (_json.GetLong("replayFailure"));
__surrogateKey = (_json.GetLong("surrogateKey"));
__replayCounter = (_json.GetLong("_rc"));
__disableSubmit = (_json.GetBoolean("disableSubmit"));
char op_2 = _json.GetChar("_op");
_isNew = (op_2 == 'C');
_isDirty = (op_2 == 'U');
_isDeleted = (op_2 == 'D');
}
示例6: _fromJSON
internal void _fromJSON(com.sybase.afx.json.JsonObject _json)
{
__tipoInteraccion = (_json.GetString("tipoInteraccion"));
__cantidadInteraccion = (_json.GetInt("cantidadInteraccion"));
__diaInteraccion = (_json.GetInt("diaInteraccion"));
__mesInteraccion = (_json.GetInt("mesInteraccion"));
__anioInteraccion = (_json.GetInt("anioInteraccion"));
__idTipoInteraccion = (_json.GetInt("idTipoInteraccion"));
char op_2 = _json.GetChar("_op");
_isNew = (op_2 == 'C');
_isDirty = (op_2 == 'U');
_isDeleted = (op_2 == 'D');
}
示例7: _fromJSON
internal void _fromJSON(com.sybase.afx.json.JsonObject _json)
{
__sistema = (_json.GetString("sistema"));
__CUIT = (_json.GetString("CUIT"));
__idDireccionEntrega = (_json.GetString("idDireccionEntrega"));
__periodoMesAnio = (_json.GetString("periodoMesAnio"));
__grupoArticulo_CodigoSAP = (_json.GetString("grupoArticulo_CodigoSAP"));
__volumen = (_json.GetDecimal("volumen"));
__unidadMedida = (_json.GetString("unidadMedida"));
__importeBruto = (_json.GetDecimal("importeBruto"));
__pending = (_json.GetBoolean("pending"));
__pendingChange = (_json.GetChar("pendingChange"));
__replayPending = (_json.GetLong("replayPending"));
__replayFailure = (_json.GetLong("replayFailure"));
__surrogateKey = (_json.GetLong("surrogateKey"));
__replayCounter = (_json.GetLong("_rc"));
__disableSubmit = (_json.GetBoolean("disableSubmit"));
char op_2 = _json.GetChar("_op");
_isNew = (op_2 == 'C');
_isDirty = (op_2 == 'U');
_isDeleted = (op_2 == 'D');
}
示例8: _fromJSON
internal void _fromJSON(com.sybase.afx.json.JsonObject _json)
{
__remoteId = (_json.GetString("remoteId"));
__component = (_json.GetString("component"));
__entityKey = (_json.GetString("entityKey"));
__attributes = (_json.GetString("attributes"));
__operation = (_json.GetString("operation"));
__parameters = (_json.GetString("parameters"));
__replayLog = (_json.GetNullableString("replayLog"));
__exception = (_json.GetNullableString("exception"));
__completed = (_json.GetBoolean("completed"));
__requestId = (_json.GetLong("requestId"));
char op_2 = _json.GetChar("_op");
_isNew = (op_2 == 'C');
_isDirty = (op_2 == 'U');
_isDeleted = (op_2 == 'D');
}
示例9: _fromJSON
internal void _fromJSON(com.sybase.afx.json.JsonObject _json)
{
__NOM_USER_RRCC = (_json.GetString("NOM_USER_RRCC"));
}
示例10: _fromJSON
internal void _fromJSON(com.sybase.afx.json.JsonObject _json)
{
__ID = (_json.GetString("ID"));
__FORMULARIO = (_json.GetString("FORMULARIO"));
__PREGUNTA = (_json.GetString("PREGUNTA"));
__RESPUESTA = (_json.GetString("RESPUESTA"));
__OBSERVACION = (_json.GetString("OBSERVACION"));
__PUNTAJE = (_json.GetDecimal("PUNTAJE"));
}
示例11: _fromJSON
internal void _fromJSON(com.sybase.afx.json.JsonObject _json)
{
__value = (_json.GetString("value"));
__pending = (_json.GetBoolean("pending"));
__pendingChange = (_json.GetChar("pendingChange"));
__replayPending = (_json.GetLong("replayPending"));
__replayFailure = (_json.GetLong("replayFailure"));
__key = (_json.GetString("key"));
__replayCounter = (_json.GetLong("_rc"));
__disableSubmit = (_json.GetBoolean("disableSubmit"));
char op_2 = _json.GetChar("_op");
_isNew = (op_2 == 'C');
_isDirty = (op_2 == 'U');
_isDeleted = (op_2 == 'D');
}
示例12: _fromJSON
internal void _fromJSON(com.sybase.afx.json.JsonObject _json)
{
__key_name = (_json.GetString("key_name"));
__package_name = (_json.GetString("package_name"));
__user_name = (_json.GetString("user_name"));
__domain_name = (_json.GetString("domain_name"));
}
示例13: _fromJSON
internal void _fromJSON(com.sybase.afx.json.JsonObject _json)
{
__ID = (_json.GetString("ID"));
__TAMANO = (_json.GetString("TAMANO"));
__SEGMENTO = (_json.GetString("SEGMENTO"));
__SUBSEGMENTO = (_json.GetString("SUBSEGMENTO"));
__RAZ_SOC_1 = (_json.GetString("RAZ_SOC_1"));
}
示例14: _fromJSON
internal void _fromJSON(com.sybase.afx.json.JsonObject _json)
{
__idDireccionEntrega = (_json.GetString("idDireccionEntrega"));
__calle = (_json.GetString("calle"));
__numero = (_json.GetString("numero"));
__codigoPostal = (_json.GetString("codigoPostal"));
__provincia_codigoSAP = (_json.GetString("provincia_codigoSAP"));
__pending = (_json.GetBoolean("pending"));
__pendingChange = (_json.GetChar("pendingChange"));
__replayPending = (_json.GetLong("replayPending"));
__replayFailure = (_json.GetLong("replayFailure"));
__surrogateKey = (_json.GetLong("surrogateKey"));
__replayCounter = (_json.GetLong("_rc"));
__disableSubmit = (_json.GetBoolean("disableSubmit"));
char op_2 = _json.GetChar("_op");
_isNew = (op_2 == 'C');
_isDirty = (op_2 == 'U');
_isDeleted = (op_2 == 'D');
}
示例15: _fromJSON
internal void _fromJSON(com.sybase.afx.json.JsonObject _json)
{
__cuentaLP0 = (_json.GetString("cuentaLP0"));
__UN = (_json.GetString("UN"));
__deudaActual = (_json.GetDecimal("deudaActual"));
__deudaVencida = (_json.GetDecimal("deudaVencida"));
__pending = (_json.GetBoolean("pending"));
__pendingChange = (_json.GetChar("pendingChange"));
__replayPending = (_json.GetLong("replayPending"));
__replayFailure = (_json.GetLong("replayFailure"));
__surrogateKey = (_json.GetLong("surrogateKey"));
__replayCounter = (_json.GetLong("_rc"));
__disableSubmit = (_json.GetBoolean("disableSubmit"));
char op_2 = _json.GetChar("_op");
_isNew = (op_2 == 'C');
_isDirty = (op_2 == 'U');
_isDeleted = (op_2 == 'D');
}