Method: Encoding::InvalidByteSequenceError#source_encoding_name
- Defined in:
- transcode.c
#source_encoding_name ⇒ String
Returns the source encoding name as a string.
4294 4295 4296 4297 4298 |
# File 'transcode.c', line 4294
static VALUE
ecerr_source_encoding_name(VALUE self)
{
return rb_attr_get(self, id_source_encoding_name);
}
|