Gets name of the base asset in terminal.


SYNTAX


public static Asset GetServerBaseAsset ()



RETURN


Asset


EXAMPLE


using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;

namespace GetServerBaseAssetExamples
{
     public class GetServerBaseAssetExamples : NETStrategy
     {
         public override void OnQuote()
         {
             Print(Asset.GetServerBaseAsset());
         }
     }
}