C# Class BlogEngine.Core.ServingEventArgs

Used when a post is served to the output stream.
Inheritance: System.EventArgs
Exibir arquivo Open project: rasmuskl/ReSharperCourse Class Usage Examples

Public Methods

Method Description
ServingEventArgs ( string body, ServingLocation location ) : System

Initializes a new instance of the ServingEventArgs class. Creates a new instance of the class and applies the specified body and serving location.

ServingEventArgs ( string body, ServingLocation location, ServingContentBy contentBy ) : System

Initializes a new instance of the ServingEventArgs class. Creates a new instance of the class and applies the specified body, serving location and serving content by.

Method Details

ServingEventArgs() public method

Initializes a new instance of the ServingEventArgs class. Creates a new instance of the class and applies the specified body and serving location.
public ServingEventArgs ( string body, ServingLocation location ) : System
body string /// The body string. ///
location ServingLocation /// The location. ///
return System

ServingEventArgs() public method

Initializes a new instance of the ServingEventArgs class. Creates a new instance of the class and applies the specified body, serving location and serving content by.
public ServingEventArgs ( string body, ServingLocation location, ServingContentBy contentBy ) : System
body string /// The body string. ///
location ServingLocation /// The location. ///
contentBy ServingContentBy /// The content By. ///
return System