SuperMap.WindowsPhone.Mapping.Layer.OnInitialized C# (CSharp) Method

OnInitialized() private method

private OnInitialized ( EventArgs e ) : void
e System.EventArgs
return void
        internal void OnInitialized(EventArgs e)
        {
            EventHandler<EventArgs> temp = this.Initialized;
            if (temp != null)
            {
                this.Initialized(this, e);
            }
        }