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


C# CSSDataContext.ExecuteCommand方法代码示例

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


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

示例1: CheckPackageForUpdatedLauncher

        private void CheckPackageForUpdatedLauncher()
        {
            List<UpdateItem> filesInPackage = AutoUpdateManager.GetFilesInUpdatePackage(txtPackageName.Text);

            UpdateItem launcherInstance = filesInPackage.FirstOrDefault(p => p.Name.ToLower() == "launcher.exe");
            if (launcherInstance != null)
            {
                // Create new launcher hash.
                using (SHA256Managed sha = new SHA256Managed())
                using (FileStream fs = File.Open(launcherInstance.FileInfo.FullName, FileMode.Open, FileAccess.Read))
                {
                    byte[] hash;

                    if (Settings.Default.UseDebugBlackBox == true)
                    {
                        hash = new byte[] {	0x37, 0x61, 0xA7, 0x4B, 0x7E, 0x31, 0xC8, 0x5E, 0xD1, 0xC0, 0xF7, 0xB3,
                                    0x95, 0xD4, 0x7E, 0x64, 0xB9, 0xC3, 0x22, 0xED, 0x2F, 0x6F, 0xF8, 0xEB,
                                    0x4D, 0xA1, 0x00, 0x9A, 0x35, 0xE5, 0x10, 0x19 };
                    }
                    else
                    {
                        hash = sha.ComputeHash(fs);
                    }

                    File.WriteAllBytes(Settings.Default.KnownHashLocation, hash);
                }

                // Invalidate all existing blackboxes to force regeneration of key tokens.
                using (CSSDataContext db = new CSSDataContext())
                {
                    // TODO: Is there a LINQ native way to do this?
                    db.ExecuteCommand("UPDATE ActiveKey SET IsValid = 0");
                    db.SubmitChanges();
                }
            }
        }
开发者ID:LordBlacksun,项目名称:Allegiance-Community-Security-System,代码行数:36,代码来源:EditPackage.aspx.cs


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