Browse Source

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

pull/37/head
Raimund Andée [MSFT] 8 years ago
parent
commit
35c379fd6b
  1. 10
      Security2/FileSystem/FileSystemOwner.cs

10
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;

Loading…
Cancel
Save