class Net::BER::BerIdentifiedString

A String object with a BER identifier attached.

Attributes

ber_identifier[RW]

Public Class Methods

new(args) click to toggle source
# File lib/net/ber.rb, line 295
def initialize args
  super args
  # LDAP uses UTF-8 encoded strings
  force_encoding('UTF-8') if respond_to?(:encoding)
end