当前位置: 首页>>代码示例>>C#>>正文


C# OCL.CanRemoveNotes方法代码示例

本文整理汇总了C#中OCL.CanRemoveNotes方法的典型用法代码示例。如果您正苦于以下问题:C# OCL.CanRemoveNotes方法的具体用法?C# OCL.CanRemoveNotes怎么用?C# OCL.CanRemoveNotes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在OCL的用法示例。


在下文中一共展示了OCL.CanRemoveNotes方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: RemoveObjectFromGroup

        /// <summary>
        /// Removes an Oyster Object from the Group
        /// Object must be one of the Oyster Types validated by the OysterObjectType enumeration
        /// </summary>
        /// <param name="AccessingUser"></param>
        /// <param name="OBJ"></param>
        /// <param name="CurrentGroup"></param>
        /// <returns></returns>
        internal bool RemoveObjectFromGroup(OCL.User AccessingUser, object Obj, OCL.Group CurrentGroup)
        {
            if(Obj is OCL.User)
            {
                throw new Exception("Must use the RemoveUser function to Remove a User from a group");
            }

            int ObjectTypeId = 0;
            int ObjectId = 0;

            m_sType = "Unknown Type";

            if(Obj is OCL.User)
            {
                if(!CurrentGroup.CanRemoveUsers(AccessingUser))
                    return false;
                return RemoveUserFromGroup(AccessingUser,(OCL.User)Obj,CurrentGroup);
            }
            else if(Obj is OCL.Recording)
            {
                if(!CurrentGroup.CanRemoveRecordings(AccessingUser))
                    return false;
                m_sType = "Recording";
                OCL.Recording R = (OCL.Recording)Obj;
                ObjectTypeId = (int)R.ObjectType;
                ObjectId = R.ID;
            }
            else if(Obj is OCL.Source)
            {
                if(!CurrentGroup.CanRemoveSources(AccessingUser))
                    return false;
                m_sType = "Source";
                OCL.Source S = (OCL.Source)Obj;
                ObjectTypeId = (int)S.ObjectType;
                ObjectId = S.ID;

            }
            else if(Obj is OCL.Control)
            {
                if(!CurrentGroup.CanRemoveControls(AccessingUser))
                    return false;
                m_sType = "Control";
                OCL.Control C = (OCL.Control)Obj;
                ObjectTypeId = (int)C.ObjectType;
                ObjectId = C.ID;
            }
            else if(Obj is OCL.Scene)
            {
                if(!CurrentGroup.CanRemoveScenes(AccessingUser))
                    return false;
                m_sType = "Scene";
                OCL.Scene S = (OCL.Scene)Obj;
                ObjectTypeId = (int)S.ObjectType;
                ObjectId = S.ID;
            }
            else if(Obj is OCL.Note)
            {
                if(!CurrentGroup.CanRemoveNotes(AccessingUser))
                    return false;
                m_sType = "Note";
                OCL.Note N = (OCL.Note)Obj;
                ObjectTypeId = (int)N.ObjectType;
                ObjectId = N.ID;
            }
            else if(Obj is OCL.RecordingSession)
            {
                if(!CurrentGroup.CanRemoveRecordingSessions(AccessingUser))
                    return false;
                m_sType = "RecordingSession";
                OCL.RecordingSession RS = (OCL.RecordingSession)Obj;
                ObjectTypeId = (int)RS.ObjectType;
                ObjectId = RS.ID;
            }
            else if(Obj is OCL.Attachment)
            {
                if(!CurrentGroup.CanRemoveAttachments(AccessingUser))
                    return false;
                m_sType = "Attachment";
                OCL.Attachment A = (OCL.Attachment)Obj;
                ObjectTypeId = (int)A.ObjectType;
                ObjectId = A.ID;
            }
            else if(Obj is OCL.Group)
            {
                if(!CurrentGroup.CanRemoveGroups(AccessingUser))
                    return false;
                m_sType = "Group";
                OCL.Group G = (OCL.Group)Obj;
                ObjectTypeId = (int)G.ObjectType;
                ObjectId = G.ID;
            }
            else if(Obj is OCL.VideoStorageServer)
//.........这里部分代码省略.........
开发者ID:CarverLab,项目名称:Oyster,代码行数:101,代码来源:Functions.cs


注:本文中的OCL.CanRemoveNotes方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。