diff options
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IInventoryArchiverModule.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IInventoryArchiverModule.cs b/OpenSim/Region/Framework/Interfaces/IInventoryArchiverModule.cs index 0795589..37e20c3 100644 --- a/OpenSim/Region/Framework/Interfaces/IInventoryArchiverModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IInventoryArchiverModule.cs | |||
@@ -42,10 +42,10 @@ namespace OpenSim.Region.Framework.Interfaces | |||
42 | /// <param name="invPath">The inventory path saved</param> | 42 | /// <param name="invPath">The inventory path saved</param> |
43 | /// <param name="savePath">The stream to which the archive was saved</param> | 43 | /// <param name="savePath">The stream to which the archive was saved</param> |
44 | /// <param name="reportedException">Contains the exception generated if the save did not succeed</param> | 44 | /// <param name="reportedException">Contains the exception generated if the save did not succeed</param> |
45 | /// <param name="SaveCount">Number of inventory items saved to archive</param> | 45 | /// <param name="saveCount">Number of inventory items saved to archive</param> |
46 | /// <param name="FilterCount">Number of inventory items skipped due to perm filter option</param> | 46 | /// <param name="filterCount">Number of inventory items skipped due to perm filter option</param> |
47 | public delegate void InventoryArchiveSaved( | 47 | public delegate void InventoryArchiveSaved( |
48 | UUID id, bool succeeded, UserAccount userInfo, string invPath, Stream saveStream, Exception reportedException, int SaveCount, int FilterCount); | 48 | UUID id, bool succeeded, UserAccount userInfo, string invPath, Stream saveStream, Exception reportedException, int saveCount, int filterCount); |
49 | 49 | ||
50 | /// <summary> | 50 | /// <summary> |
51 | /// Used for the OnInventoryArchiveLoaded event. | 51 | /// Used for the OnInventoryArchiveLoaded event. |
@@ -56,9 +56,9 @@ namespace OpenSim.Region.Framework.Interfaces | |||
56 | /// <param name="invPath">The inventory path loaded</param> | 56 | /// <param name="invPath">The inventory path loaded</param> |
57 | /// <param name="savePath">The stream from which the archive was loaded</param> | 57 | /// <param name="savePath">The stream from which the archive was loaded</param> |
58 | /// <param name="reportedException">Contains the exception generated if the load did not succeed</param> | 58 | /// <param name="reportedException">Contains the exception generated if the load did not succeed</param> |
59 | /// <param name="LoadCount">Number of inventory items loaded from archive</param> | 59 | /// <param name="loadCount">Number of inventory items loaded from archive</param> |
60 | public delegate void InventoryArchiveLoaded( | 60 | public delegate void InventoryArchiveLoaded( |
61 | UUID id, bool succeeded, UserAccount userInfo, string invPath, Stream loadStream, Exception reportedException, int LoadCount); | 61 | UUID id, bool succeeded, UserAccount userInfo, string invPath, Stream loadStream, Exception reportedException, int loadCount); |
62 | 62 | ||
63 | 63 | ||
64 | public interface IInventoryArchiverModule | 64 | public interface IInventoryArchiverModule |