C# Class WebApplications.Utilities.Formatting.Resolution

Datei anzeigen Open project: webappsuk/CoreLibraries

Public Properties

Property Type Description
IsResolved bool
NoCache bool

Public Methods

Method Description
Resolution ( [ value, bool noCache = false ) : System

Initializes a new instance of the Resolution struct.

ToString ( ) : string

Returns a System.String that represents this instance.

ToString ( [ format, [ formatProvider = null ) : string

Returns a System.String that represents this instance.

Private Methods

Method Description
Resolution ( bool isResolved, bool noCache ) : System

Initializes a new instance of the Resolution struct.

Method Details

Resolution() public method

Initializes a new instance of the Resolution struct.
public Resolution ( [ value, bool noCache = false ) : System
value [ The resolved value.
noCache bool if set to then this resolution is not cached.
return System

ToString() public method

Returns a System.String that represents this instance.
public ToString ( ) : string
return string

ToString() public method

Returns a System.String that represents this instance.
public ToString ( [ format, [ formatProvider = null ) : string
format [ The format to use.-or- A null reference (Nothing in Visual Basic) to use the default format defined for the type of the implementation.
formatProvider [ The provider to use to format the value.-or- A null reference (Nothing in Visual Basic) to obtain the numeric format information from the current locale setting of the operating system.
return string

Property Details

IsResolved public_oe property

is the value represents a resolution; otherwise to indicate the original tag was unknown.
public bool IsResolved
return bool

NoCache public_oe property

Whether this resolution should be cached.
public bool NoCache
return bool