HandCoded.Meta.SchemaRelease.RemoveImport C# (CSharp) Méthode

RemoveImport() public méthode

Breaks the bi-directional reference between this SchemaRelease and the indicated one.
public RemoveImport ( SchemaRelease release ) : void
release SchemaRelease The no longer imported.
Résultat void
        public void RemoveImport(SchemaRelease release)
        {
            this.imports.Remove (release);
            release.importedBy.Remove (this);
        }