IBE.SQL.EliteDBIO.ImportStations_Own C# (CSharp) Method

ImportStations_Own() public method

imports the "own" station data from the list of stations
public ImportStations_Own ( String Filename, Int32>.Dictionary changedSystemIDs, System.Boolean OnlyAddUnknown = false ) : void
Filename String
changedSystemIDs Int32>.Dictionary
OnlyAddUnknown System.Boolean
return void
        public void ImportStations_Own(String Filename, Dictionary<Int32, Int32> changedSystemIDs, Boolean OnlyAddUnknown = false)
        {
            try
            {
                ImportStations_Own(JsonConvert.DeserializeObject<List<EDStation>>(File.ReadAllText(Filename)), changedSystemIDs, OnlyAddUnknown);
            }
            catch (Exception ex)
            {
                throw new Exception("Error in <ImportSystems_Own> from single station", ex);
            }
        }

Same methods

EliteDBIO::ImportStations_Own ( EDStation Station, System.Boolean OnlyAddUnknown = false, System.Boolean setVisitedFlag = false ) : void
EliteDBIO::ImportStations_Own ( List Stations, Int32>.Dictionary changedSystemIDs, System.Boolean OnlyAddUnknown = false, System.Boolean setVisitedFlag = false ) : void
EliteDBIO::ImportStations_Own ( String Filename, System.Boolean OnlyAddUnknown = false ) : void