Alphashack.Graphdat.Agent.HttpModule.SafeGetGraphdat C# (CSharp) Метод

SafeGetGraphdat() публичный статический Метод

public static SafeGetGraphdat ( ) : IGraphdat
Результат IGraphdat
        public static IGraphdat SafeGetGraphdat()
        {
            IGraphdat graphdat;
            if(!TryGetGraphdat(out graphdat))
            {
                graphdat = new ErrorGraphdat();
            }
            return graphdat;
        }