Exemplo n.º 1
0
 public ShellId GetShellId()
 {
     return(ShellId.FromString(Name));
 }
Exemplo n.º 2
0
 /// <inheritdoc />
 public ShellId GetShellId()
 {
     //  The environment variable name will be unique in the folder, so works perfectly as a PIDL.
     return(ShellId.FromString(_name));
 }
Exemplo n.º 3
0
 ShellId IShellNamespaceItem.GetShellId()
 {
     return(ShellId.FromString(displayName));
 }
Exemplo n.º 4
0
 /// <summary>
 /// Gets the unique identifier.
 /// </summary>
 /// <returns>The unique identifier, which in this case is based on the repo name.</returns>
 public ShellId GetShellId()
 {
     //  Use the name as the source of the ID.
     return(ShellId.FromString(Name));
 }