Plugin.cs
Description du code
Plugin.cs est un fichier du projet BrolDev.Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/broldev/src/.
Projet BrolDev : Librairie de composants réutilisables pour les applications BrolDev en CSharp.
Code source ou contenu du fichier
Code c# (Plugin.cs) (102 lignes)
using System; using System.IO; using System.Reflection; using System.Windows.Forms; namespace be.gaudry.model.config { public class Plugin { private String fullPath, name, version, description; public Plugin(String directory, String name) { if (String.Empty.Equals(directory)) directory = Application.StartupPath; this.fullPath = String.Format( "{0}{1}{2}", directory, Path.DirectorySeparatorChar, name ); if (File.Exists(fullPath)) { Assembly assembly = Assembly.LoadFile(fullPath); this.name = getName(assembly); this.version = getVersion(assembly); this.description = getDescription(assembly); } else { this.name = "Inconnu"; this.version = "Inconnue"; this.description = ""; } } private String getDescription(Assembly assembly) { // Get all Description properties on this assembly // If there aren't any Description properties, return an empty string if (properties.Length == 0) return ""; // If there is a Description attribute, return its value return ((AssemblyDescriptionAttribute)properties[0]).Description; } private String getVersion(Assembly assembly) { return assembly.GetName().Version.ToString(); } private String getName(Assembly assembly) { // Get all Title properties on this assembly // If there is at least one Title attribute if (properties.Length > 0) { // Select the first one AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)properties[0]; // If it is not an empty string, return it if (titleAttribute.Title != "") return titleAttribute.Title; } // If there was no Title attribute, or if the Title attribute was the empty string, return the .exe name return Path.GetFileNameWithoutExtension(assembly.CodeBase); } public String Name { get { return this.name; } } public String Version { get { return this.version; } } public String Description { get { return this.description; } } #region overrided methods public override String ToString() { return name; } public override int GetHashCode() { return fullPath.GetHashCode(); } public override bool Equals(Object o) { if (this == o) return true; Plugin p = (Plugin)o; return p.fullPath.Equals(this.fullPath); } #endregion } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Pas de sous-répertoires. | |||
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1734985343 23/12/2024 21:22:23 |
Utilisation de l'explorateur de code
- Navigation :
- Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
- Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
- La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
- Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
- Affichage :
- Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
- Actions :
- Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 16/10/2009, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/cs-broldev-source-rf-model/config/Plugin.cs.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.