Skip to content

IFakerInstance

baileydauterman edited this page Jan 6, 2025 · 2 revisions

The IFakerInstance is the backbone of Faker.NET infrastructure. This provides the static entry point into the application with 6 properties that make up the fake data generation:

 public interface IFakerLocaleInstance
 {
     IFakerAirline Airline { get; }

     IFakerColor Color { get; }

     IFakerCommerce Commerce { get; }

     IFakerDate Date { get; }

     IFakerInternet Internet { get; }

     IFakerLocation Location { get; }

     IFakerLorem Lorem { get; }

     IFakerPerson Person { get; }

     IFakerPhone PhoneNumber { get; }

     IFakerWord Word { get; }

     CultureInfo Culture { get; }
}

Clone this wiki locally