예제 #1
0
        public static void WarnSourcePathNotFound(this IPipelineWriter writer)
        {
            if (writer == null)
            {
                return;
            }

            writer.WriteWarning(PSDocsResources.SourceNotFound);
        }
예제 #2
0
        public static void WarnTitleEmpty(this IPipelineWriter writer)
        {
            if (writer == null)
            {
                return;
            }

            writer.WriteWarning(PSDocsResources.TitleEmpty);
        }
예제 #3
0
        protected override void DoWriteWarning(string message)
        {
            if (_Inner == null)
            {
                return;
            }

            _Inner.WriteWarning(message);
        }