In that case I think you may have to call the method using reflection
System::Reflection::MethodInfo^ mi = interfaceType->GetMethod("Settings");
cli::array<System::Object> parameters = gcnew cli::array<System::Object>();
System::Object^ retVal = mi->Invoke(obj, parameters)