Mapsui.Providers.MemoryProvider.Find C# (CSharp) Метод

Find() публичный Метод

public Find ( object value ) : IFeature
value object
Результат IFeature
        public IFeature Find(object value)
        {
            lock (_syncRoot)
            {
                if (string.IsNullOrEmpty(Features.PrimaryKey)) throw new Exception("ID Field was not set");
                return Find(value, Features.PrimaryKey);
            }
        }

Same methods

MemoryProvider::Find ( object value, string primaryKey ) : IFeature