public static bool?CanCreateDocument(this ICmisObject obj)
 {
     return(obj.IsActionAllowed(Actions.CanCreateDocument));
 }
 public static bool?CanCreateFolder(this ICmisObject obj)
 {
     return(obj.IsActionAllowed(Actions.CanCreateFolder));
 }
 public static bool?CanRemovePolicy(this ICmisObject obj)
 {
     return(obj.IsActionAllowed(Actions.CanRemovePolicy));
 }
 public static bool?CanGetChildren(this ICmisObject obj)
 {
     return(obj.IsActionAllowed(Actions.CanGetChildren));
 }
 public static bool?CanGetContentStream(this ICmisObject obj)
 {
     return(obj.IsActionAllowed(Actions.CanGetContentStream));
 }
 public static bool?CanGetAppliedPolicies(this ICmisObject obj)
 {
     return(obj.IsActionAllowed(Actions.CanGetAppliedPolicies));
 }
 public static bool?CanGetAllVersions(this ICmisObject obj)
 {
     return(obj.IsActionAllowed(Actions.CanGetAllVersions));
 }
 public static bool?CanRemoveObjectFromFolder(this ICmisObject obj)
 {
     return(obj.IsActionAllowed(Actions.CanRemoveObjectFromFolder));
 }
 public static bool?CanCheckIn(this ICmisObject obj)
 {
     return(obj.IsActionAllowed(Actions.CanCheckIn));
 }
 public static bool?CanCancelCheckOut(this ICmisObject obj)
 {
     return(obj.IsActionAllowed(Actions.CanCancelCheckOut));
 }
 public static bool?CanMoveObject(this ICmisObject obj)
 {
     return(obj.IsActionAllowed(Actions.CanMoveObject));
 }
 public static bool?CanGetDescendants(this ICmisObject obj)
 {
     return(obj.IsActionAllowed(Actions.CanGetDescendants));
 }
 public static bool?CanGetFolderParent(this ICmisObject obj)
 {
     return(obj.IsActionAllowed(Actions.CanGetFolderParent));
 }