[CONNECT C#] Get Item Type Schema

My goal is to collect instances of a given Item Type in a DGN model.  To achieve that I must first get an EC schema from the active DGN file or model.  My attempts in C# fail...

FindInstancesScope scope = FindInstancesScope.CreateScope(Session.Instance.GetActiveDgnModel(), new FindInstancesScopeOption ());
IECSchema schema = DgnECManager.Manager.LocateSchemaInScope(scope, schemaName, 1, 0, SchemaMatchType.Latest);

schemaName is something like MasterPlanner, where MasterPlanner is the name of an Item Type library defined in the active DGN file. What am I doing wrong?