BlogEngine.Core.ServingEventArgs.ServingEventArgs C# (CSharp) Method

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
        public ServingEventArgs(string body, ServingLocation location)
            : this(body, location, ServingContentBy.Unspecified)
        {
        }

Same methods

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