Beaver.Build.BuildHelper.MsBuildCollectionLogger.Initialize C# (CSharp) Метод

Initialize() публичный Метод

public Initialize ( IEventSource eventSource ) : void
eventSource IEventSource
Результат void
            public override void Initialize(IEventSource eventSource)
            {
                if(eventSource == null) throw new ArgumentNullException("eventSource");

                eventSource.ProjectStarted += eventSource_ProjectStarted;
                eventSource.MessageRaised += eventSource_MessageRaised;
                eventSource.WarningRaised += eventSource_WarningRaised;
                eventSource.ErrorRaised += eventSource_ErrorRaised;
                eventSource.ProjectFinished += eventSource_ProjectFinished;
            }