Example #1
0
 public static bool UpdatePublishedFileSetChangeDescription(PublishedFileUpdateHandle updateHandle, string ChangeDescription)
 {
     InteropHelp.TestIfAvailableClient();
     using (var ChangeDescription2 = new InteropHelp.UTF8StringHandle(ChangeDescription)) {
         return(NativeMethods.ISteamRemoteStorage_UpdatePublishedFileSetChangeDescription(updateHandle, ChangeDescription2));
     }
 }
Example #2
0
 public static bool UpdatePublishedFileTitle(PublishedFileUpdateHandle updateHandle, string Title)
 {
     InteropHelp.TestIfAvailableClient();
     using (var Title2 = new InteropHelp.UTF8StringHandle(Title)) {
         return(NativeMethods.ISteamRemoteStorage_UpdatePublishedFileTitle(updateHandle, Title2));
     }
 }
Example #3
0
 public static SteamAPICall CommitPublishedFileUpdate(PublishedFileUpdateHandle updateHandle)
 {
     InteropHelp.TestIfAvailableClient();
     return((SteamAPICall)NativeMethods.ISteamRemoteStorage_CommitPublishedFileUpdate(updateHandle));
 }
Example #4
0
 public static bool UpdatePublishedFileTags(PublishedFileUpdateHandle updateHandle, System.Collections.Generic.IList <string> pTags)
 {
     InteropHelp.TestIfAvailableClient();
     return(NativeMethods.ISteamRemoteStorage_UpdatePublishedFileTags(updateHandle, new InteropHelp.SteamParamStringArray(pTags)));
 }
Example #5
0
 public static bool UpdatePublishedFileVisibility(PublishedFileUpdateHandle updateHandle, Visibility eVisibility)
 {
     InteropHelp.TestIfAvailableClient();
     return(NativeMethods.ISteamRemoteStorage_UpdatePublishedFileVisibility(updateHandle, eVisibility));
 }