//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.1 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace uuendused { using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Linq; using System.ServiceModel.DomainServices; using System.ServiceModel.DomainServices.Client; using System.ServiceModel.DomainServices.Client.ApplicationServices; /// /// Context for the RIA application. /// /// /// This context extends the base to make application services and types available /// for consumption from code and xaml. /// public sealed partial class WebContext : WebContextBase { #region Extensibility Method Definitions /// /// This method is invoked from the constructor once initialization is complete and /// can be used for further object setup. /// partial void OnCreated(); #endregion /// /// Initializes a new instance of the WebContext class. /// public WebContext() { this.OnCreated(); } /// /// Gets the context that is registered as a lifetime object with the current application. /// /// is thrown if there is no current application, /// no contexts have been added, or more than one context has been added. /// /// public new static WebContext Current { get { return ((WebContext)(WebContextBase.Current)); } } } }