프로퍼티 | 타입 | 설명 | |
---|---|---|---|
ESCAPE_CHARACTER | char | ||
PATH_DELIMITER | char |
메소드 | 설명 | |
---|---|---|
EscapeArchivePath ( string path ) : string |
Escape an archive path.
|
|
FindFolderByPath ( IInventoryService inventoryService, |
Find a folder given a PATH_DELIMITER delimited path starting from this folder
|
|
FindFolderByPath ( IInventoryService inventoryService, UUID userId, string path ) : List |
Find a folder given a PATH_DELIMITER delimited path starting from a user's root folder
|
|
FindItemByPath ( IInventoryService inventoryService, |
Find an item given a PATH_DELIMITOR delimited path starting from this folder. This method does not handle paths that contain multiple delimiters FIXME: We do not yet handle situations where folders or items have the same name. We could handle this by some XPath like expression FIXME: Delimiters which occur in names themselves are not currently escapable.
|
|
FindItemByPath ( IInventoryService inventoryService, UUID userId, string path ) : |
Find an item given a PATH_DELIMITOR delimited path starting from the user's root folder. This method does not handle paths that contain multiple delimiters FIXME: We do not yet handle situations where folders or items have the same name. We could handle this by some XPath like expression FIXME: Delimiters which occur in names themselves are not currently escapable.
|
|
SplitEscapedPath ( string path ) : string[] |
Split a human escaped path into two components if it contains an un-escaped path delimiter, or one component if no delimiter is present
|
|
UnescapeArchivePath ( string path ) : string |
Un-escape an archive path.
|
|
UnescapePath ( string path ) : string |
Un-escapes a human escaped path. This means that "\\" goes to "\", and "\/" goes to "/"
|
public static EscapeArchivePath ( string path ) : string | ||
path | string | |
리턴 | string |
public static FindFolderByPath ( IInventoryService inventoryService, |
||
inventoryService | IInventoryService | /// Inventory service to query /// |
startFolder | /// The folder from which the path starts /// | |
path | string | /// The path to the required folder. /// It this is empty or consists only of the PATH_DELIMTER then this folder itself is returned. /// |
리턴 | List |
public static FindFolderByPath ( IInventoryService inventoryService, UUID userId, string path ) : List |
||
inventoryService | IInventoryService | /// Inventory service to query /// |
userId | UUID | /// User id to search /// |
path | string | /// The path to the required folder. /// It this is empty or consists only of the PATH_DELIMTER then this folder itself is returned. /// |
리턴 | List |
public static FindItemByPath ( IInventoryService inventoryService, |
||
inventoryService | IInventoryService | /// Inventory service to query /// |
startFolder | /// The folder from which the path starts /// | |
path | string | /// The path to the required item. /// |
리턴 |
public static FindItemByPath ( IInventoryService inventoryService, UUID userId, string path ) : |
||
inventoryService | IInventoryService | /// Inventory service to query /// |
userId | UUID | /// The user to search /// |
path | string | /// The path to the required item. /// |
리턴 |
public static SplitEscapedPath ( string path ) : string[] | ||
path | string | |
리턴 | string[] |
public static UnescapeArchivePath ( string path ) : string | ||
path | string | |
리턴 | string |