# File lib/rbvmomi/connection.rb, line 238
  def self.method_missing sym, *a
    if @loader and @loader.has_type? sym.to_s
      const_get(sym).new(*a)
    else
      super
    end
  end