C# Class Orchestra.Models.AboutInfo

Inheritance: Catel.Data.ModelBase
Mostrar archivo Open project: WildGums/Orchestra Class Usage Examples

Public Methods

Method Description
AboutInfo ( Uri companyLogoUri = null, string logoImageSource = null, UriInfo uriInfo = null, Assembly assembly = null, Uri companyLogoForSplashScreenUri = null, BitmapSource appIcon = null, System.DateTime buildDateTime = null, string company = null, string copyright = null, string description = null, string displayVersion = null, string informationalVersion = null, string name = null, string productName = null, string version = null ) : System

Initializes a new instance of the AboutInfo class.

Method Details

AboutInfo() public method

Initializes a new instance of the AboutInfo class.
public AboutInfo ( Uri companyLogoUri = null, string logoImageSource = null, UriInfo uriInfo = null, Assembly assembly = null, Uri companyLogoForSplashScreenUri = null, BitmapSource appIcon = null, System.DateTime buildDateTime = null, string company = null, string copyright = null, string description = null, string displayVersion = null, string informationalVersion = null, string name = null, string productName = null, string version = null ) : System
companyLogoUri System.Uri The company logo image Uri.
logoImageSource string The logo image source.
uriInfo UriInfo The uri info. Can be null.
assembly System.Reflection.Assembly The assembly to use for the information. If null, the assembly will be determined automatically.
companyLogoForSplashScreenUri System.Uri
appIcon BitmapSource The application icon. Can be null. If null then value will be picked from assembly.
buildDateTime System.DateTime The application build datetime. Can be null. If null then value will be picked from assembly.
company string The application company. Can be null. If null then value will be picked from assembly.
copyright string The application copyright. Can be null. If null then value will be picked from assembly.
description string The application description. Can be null. If null then value will be picked from assembly.
displayVersion string The application display version. Can be null. If null then value will be picked from assembly.
informationalVersion string The application informational version. Can be null. If null then value will be picked from assembly.
name string The application title. Can be null. If null then value will be picked from assembly.
productName string The application product name. Can be null. If null then value will be picked from assembly.
version string The application version. Can be null. If null then value will be picked from assembly.
return System