本文整理汇总了C#中System.ApplicationException.Update方法的典型用法代码示例。如果您正苦于以下问题:C# ApplicationException.Update方法的具体用法?C# ApplicationException.Update怎么用?C# ApplicationException.Update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.ApplicationException
的用法示例。
在下文中一共展示了ApplicationException.Update方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateFromParentException
public ApplicationException CreateFromParentException(System.Int32 __Id, Services.Packages.Log.ApplicationException _ParentException, string SessionToken)
{
ModelSession session = ApplicationExceptionSecureService.CheckSessionImp(SessionToken);
ApplicationException _ApplicationException = new ApplicationException(__Id);
if (!_ApplicationException.Exists && !Services.Packages.Log.Security.ApplicationExceptionSecureService.CheckAccessImp(_ParentException, SessionToken, "Create InnerExceptions"))
throw new UnauthorizedAccessException("Access Denied");
else if (_ApplicationException.Exists && !ApplicationExceptionSecureService.CheckAccessImp(_ApplicationException, SessionToken, "Update"))
throw new UnauthorizedAccessException("Access Denied");
// ApplicationException _ApplicationException = ApplicationException.CreateApplicationException(__Id);
_ApplicationException.Owner = session.User;
_ApplicationException.ParentException = _ParentException;
_ApplicationException.Update();
return _ApplicationException;
}
开发者ID:phaetto,项目名称:services-update,代码行数:17,代码来源:Services.Packages.Log.Security.ApplicationExceptionSecureService.cs
示例2: UpdateObject
public void UpdateObject(ApplicationException _ApplicationException, string SessionToken)
{
if (!ApplicationExceptionSecureService.CheckAccessImp(_ApplicationException, SessionToken, "Update"))
throw new UnauthorizedAccessException("Access Denied");
_ApplicationException.Update();
}
开发者ID:phaetto,项目名称:services-update,代码行数:7,代码来源:Services.Packages.Log.Security.ApplicationExceptionSecureService.cs
示例3: SetParentException
public void SetParentException(ApplicationException _ApplicationException, Services.Packages.Log.ApplicationException _ParentException, string SessionToken)
{
_ApplicationException.Reload();
//*
if (!Services.Packages.Log.Security.ApplicationExceptionSecureService.CheckAccessImp(_ApplicationException, SessionToken, "Traverse"))
throw new UnauthorizedAccessException("Access Denied");
//*/
//*
_ParentException.Reload();
if (_ParentException.Exists && !Services.Packages.Log.Security.ApplicationExceptionSecureService.CheckAccessImp(_ParentException, SessionToken, "Update"))
throw new UnauthorizedAccessException("Access Denied");
else if (!_ParentException.Exists && !Services.Packages.Log.Security.ApplicationExceptionSecureService.CheckAccessImp(_ApplicationException, SessionToken, "Create InnerExceptions"))
throw new UnauthorizedAccessException("Access Denied");
//*/
_ApplicationException.ParentException = _ParentException;
_ApplicationException.Update();
}
开发者ID:phaetto,项目名称:services-update,代码行数:20,代码来源:Services.Packages.Log.Security.ApplicationExceptionSecureService.cs
示例4: SetOwner
public void SetOwner(ApplicationException _ApplicationException, Services.Packages.Security.ModelUser _Owner, string SessionToken)
{
_ApplicationException.Reload();
//*
if (!Services.Packages.Log.Security.ApplicationExceptionSecureService.CheckAccessImp(_ApplicationException, SessionToken, "Traverse"))
throw new UnauthorizedAccessException("Access Denied");
//*/
//*
_Owner.Reload();
if (_Owner.Exists && !Services.Packages.Security.Security.ModelUserSecureService.CheckAccessImp(_Owner, SessionToken, "Update"))
throw new UnauthorizedAccessException("Access Denied");
else if (!_Owner.Exists && !Services.Packages.Log.Security.ApplicationExceptionSecureService.CheckAccessImp(_ApplicationException, SessionToken, "Create ApplicationExceptionOwning"))
throw new UnauthorizedAccessException("Access Denied");
//*/
_ApplicationException.Owner = _Owner;
_ApplicationException.Update();
}
开发者ID:phaetto,项目名称:services-update,代码行数:20,代码来源:Services.Packages.Log.Security.ApplicationExceptionSecureService.cs
示例5: SetApiKey
public void SetApiKey(ApplicationException _ApplicationException, Services.Packages.ApiKey _ApiKey, string SessionToken)
{
_ApplicationException.Reload();
//*
if (!Services.Packages.Log.Security.ApplicationExceptionSecureService.CheckAccessImp(_ApplicationException, SessionToken, "Traverse"))
throw new UnauthorizedAccessException("Access Denied");
//*/
//*
_ApiKey.Reload();
if (_ApiKey.Exists && !Services.Packages.Security.ApiKeySecureService.CheckAccessImp(_ApiKey, SessionToken, "Update"))
throw new UnauthorizedAccessException("Access Denied");
else if (!_ApiKey.Exists && !Services.Packages.Log.Security.ApplicationExceptionSecureService.CheckAccessImp(_ApplicationException, SessionToken, "Create ApplicationExceptionsLogged"))
throw new UnauthorizedAccessException("Access Denied");
//*/
_ApplicationException.ApiKey = _ApiKey;
_ApplicationException.Update();
}
开发者ID:phaetto,项目名称:services-update,代码行数:20,代码来源:Services.Packages.Log.Security.ApplicationExceptionSecureService.cs
示例6: SetACLs
public void SetACLs(ApplicationException _ApplicationException, Services.Packages.Log.Security.ApplicationExceptionAccessControlListCollection _ACLs, string SessionToken)
{
_ApplicationException.Reload();
//*
if (!Services.Packages.Log.Security.ApplicationExceptionSecureService.CheckAccessImp(_ApplicationException, SessionToken, "Traverse"))
throw new UnauthorizedAccessException("Access Denied");
//*/
/*
_ACLs.Reload();
if (_ACLs.Exists && !Services.Packages.Log.Security.Security.ApplicationExceptionAccessControlListSecureService.CheckAccessImp(_ACLs, SessionToken, "Update"))
throw new UnauthorizedAccessException("Access Denied");
else if (!_ACLs.Exists && !Services.Packages.Log.Security.ApplicationExceptionSecureService.CheckAccessImp(_ApplicationException, SessionToken, "Create ACLs"))
throw new UnauthorizedAccessException("Access Denied");
//*/
_ApplicationException.ACLs = _ACLs;
_ApplicationException.Update();
}
开发者ID:phaetto,项目名称:services-update,代码行数:20,代码来源:Services.Packages.Log.Security.ApplicationExceptionSecureService.cs