Model.NetworkComponent.Update C# (CSharp) Method

Update() protected method

protected Update ( ) : void
return void
		protected void Update()
		{
			if (this.Service == null)
			{
				return;
			}
			this.Service.Update();
		}

Usage Example

Esempio n. 1
0
        public void Update()
        {
            NetworkComponent component = this.GetValue();

            component.Update();
        }