Domain.SurrogateForIGameObserver.Convert C# (CSharp) Method

Convert() private method

private Convert ( SurrogateForIGameObserver value ) : IGameObserver
value SurrogateForIGameObserver
return IGameObserver
        public static IGameObserver Convert(SurrogateForIGameObserver value)
        {
            if (value == null) return null;
            return new GameObserver(value.Channel, value.ObserverId);
        }

Same methods

SurrogateForIGameObserver::Convert ( IGameObserver value ) : SurrogateForIGameObserver
SurrogateForIGameObserver