本文整理汇总了C#中OCL.CanRemoveSources方法的典型用法代码示例。如果您正苦于以下问题:C# OCL.CanRemoveSources方法的具体用法?C# OCL.CanRemoveSources怎么用?C# OCL.CanRemoveSources使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OCL
的用法示例。
在下文中一共展示了OCL.CanRemoveSources方法的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)
//.........这里部分代码省略.........