CodeOwls.PowerShell.Provider.Provider.GetContentWriter C# (CSharp) Метод

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

public GetContentWriter ( string path ) : IContentWriter
path string
Результат IContentWriter
        public virtual IContentWriter GetContentWriter(string path)
        {
            var factories = GetNodeFactoryFromPath(path);
            if (null == factories)
            {
                return null;
            }

            return GetContentWriter(path, factories.First(a => a is ISetItemContent));
        }

Same methods

Provider::GetContentWriter ( string path, INodeFactory nodeFactory ) : IContentWriter