AgGateway.ADAPT.ISOv4Plugin.Loaders.PrescriptionLoader.Load C# (CSharp) Method

Load() private method

private Load ( ) : List
return List
        private List<RasterGridPrescription> Load()
        {
            LoadPrescriptions(_rootNode.SelectNodes("TSK"));
            ProcessExternalNodes();

            return _prescriptions;
        }

Same methods

PrescriptionLoader::Load ( TaskDataDocument taskDocument ) : List

Usage Example

Example #1
0
        public static List<RasterGridPrescription> Load(TaskDataDocument taskDocument)
        {
            var loader = new PrescriptionLoader(taskDocument);

            return loader.Load();
        }
All Usage Examples Of AgGateway.ADAPT.ISOv4Plugin.Loaders.PrescriptionLoader::Load