# File lib/rbvmomi/connection.rb, line 228
  def self.const_missing sym
    name = sym.to_s
    if @loader and @loader.has_type? name
      @loader.load_type name
      const_get sym
    else
      super
    end
  end