public bool UpdatePublishedFileSetChangeDescription(PublishedFileUpdateHandle updateHandle,
                                                     string changeDescription)
 {
     CheckIfUsable();
     return(NativeMethods.Cloud_UpdatePublishedFileSetChangeDescription(updateHandle.AsUInt64,
                                                                        changeDescription));
 }
 public bool UpdatePublishedFileTags(PublishedFileUpdateHandle updateHandle, IList <string> tags)
 {
     CheckIfUsable();
     using (SteamParamStringArray tagsArray = new SteamParamStringArray(tags))
     {
         return(NativeMethods.Cloud_UpdatePublishedFileTags(updateHandle.AsUInt64, tagsArray.UnmanagedMemory));
     }
 }
 public bool UpdatePublishedFileSetChangeDescription(PublishedFileUpdateHandle updateHandle,
     string changeDescription)
 {
     CheckIfUsable();
     return NativeMethods.Cloud_UpdatePublishedFileSetChangeDescription(updateHandle.AsUInt64,
         changeDescription);
 }
 public void CommitPublishedFileUpdate(PublishedFileUpdateHandle updateHandle)
 {
     CheckIfUsable();
     NativeMethods.Cloud_CommitPublishedFileUpdate(updateHandle.AsUInt64);
 }
 public bool UpdatePublishedFileTags(PublishedFileUpdateHandle updateHandle, IList<string> tags)
 {
     CheckIfUsable();
     using (SteamParamStringArray tagsArray = new SteamParamStringArray(tags))
     {
         return NativeMethods.Cloud_UpdatePublishedFileTags(updateHandle.AsUInt64, tagsArray.UnmanagedMemory);
     }
 }
 public bool UpdatePublishedFileVisibility(PublishedFileUpdateHandle updateHandle, RemoteStoragePublishedFileVisibility visibility)
 {
     CheckIfUsable();
     return NativeMethods.Cloud_UpdatePublishedFileVisibility(updateHandle.AsUInt64, (int)visibility);
 }
 public bool UpdatePublishedFileTitle(PublishedFileUpdateHandle updateHandle, string title)
 {
     CheckIfUsable();
     return NativeMethods.Cloud_UpdatePublishedFileTitle(updateHandle.AsUInt64, title);
 }
 public void CommitPublishedFileUpdate(PublishedFileUpdateHandle updateHandle)
 {
     CheckIfUsable();
     NativeMethods.Cloud_CommitPublishedFileUpdate(updateHandle.AsUInt64);
 }
 public bool UpdatePublishedFileVisibility(PublishedFileUpdateHandle updateHandle, RemoteStoragePublishedFileVisibility visibility)
 {
     CheckIfUsable();
     return(NativeMethods.Cloud_UpdatePublishedFileVisibility(updateHandle.AsUInt64, (int)visibility));
 }
 public bool UpdatePublishedFileTitle(PublishedFileUpdateHandle updateHandle, string title)
 {
     CheckIfUsable();
     return(NativeMethods.Cloud_UpdatePublishedFileTitle(updateHandle.AsUInt64, title));
 }