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
Calls superclass method
# File lib/net/ber.rb, line 297 def initialize args super begin args.respond_to?(:encode) ? args.encode('UTF-8') : args rescue args end end