소스 검색

Adds properties to allow piping into Set-Owner as mentioned in #31

tags/4.2.4
Raimund Andée [MSFT] 6 년 전
부모
커밋
35c379fd6b
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. +10
    -0
      Security2/FileSystem/FileSystemOwner.cs

+ 10
- 0
Security2/FileSystem/FileSystemOwner.cs 파일 보기

@@ -20,6 +20,16 @@ namespace Security2
get { return owner; }
}

public IdentityReference2 Account
{
get { return owner; }
}

public string FullName
{
get { return item.FullName; }
}

private FileSystemOwner(FileSystemInfo item, IdentityReference2 owner)
{
this.item = item;


불러오는 중...
취소
저장