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, 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
        public ServingEventArgs(string body, ServingLocation location, ServingContentBy contentBy)
        {
            this.Body = body;
            this.Location = location;
            this.ContentBy = contentBy;
        }

Same methods

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