text
stringlengths
1
932k
using EGamePlay.Combat.Ability; using System; using GameUtils; using ET; using System.Collections.Generic; using UnityEngine; namespace EGamePlay.Combat { /// <summary> /// 行动能力 /// </summary> public class ActionAbility : AbilityEntity { public AbilityExecution CreateAction() { ...
//------------------------------------------------------------------------------ // <auto-generated> // このコードはツールによって生成されました。 // ランタイム バージョン:4.0.30319.0 // // このファイルへの変更は、以下の状況下で不正な動作の原因になったり、 // コードが再生成されるときに損失したりします。 // </auto-generated> //-------------------------------------------------------------...
using Prism.Mvvm; using Xamarin.Forms; namespace Prism.Forms.Tests.Mocks.Views { public class TabbedPageMock : TabbedPage { public TabbedPageMock() { ViewModelLocator.SetAutowireViewModel(this, true); Children.Add(new ContentPageMock() { Title = "Page 1" }); ...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Runtime.CompilerServices; using System.Runtime.Serialization.Formatters.Binary; using UnityEditor.AddressableAssets.Build; using UnityEditor.AddressableAssets.Build.DataBuilders; using UnityEditor.AddressableAssets.HostingS...
using System; using System.Collections.Generic; using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace FamixTest.VisualBasic { [TestClass] public class SubClassTest : LanProjectVisualBasicLoader { [TestMethod] public void AllTheClassesSubClassDirectlyOrNotFromObject(...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Restaurant.Api.Application.ViewModels { public class RestaurantInformationViewModel { public string ResId { get; set; } public string RestaurantName { get; set; } public AddressVi...
/********************************************************************* * * Copyright (C) 2002 Andrew Khan * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of th...
// *** WARNING: this file was generated by the Pulumi SDK Generator. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Threading.Tasks; using Pulumi.Serialization; namespace Pulumi.Azur...
using blqw.MIS; using System; using System.Threading; using System.Threading.Tasks; namespace BizDemo { public class User { [ApiProperty] public int X { get; set; } [Api] public object Test() { return "hello mis"; } [Api] public as...
using System; using System.Collections.Generic; using System.Text; using System.Net; using System.Net.Sockets; using gov.va.medora.utils; using gov.va.medora.mdo.exceptions; namespace gov.va.medora.mdo.dao.vista { public class VistaDirectConnectStrategy : IConnectStrategy { const int LISTENER_TIMEOUT =...
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fi...
using System; using System.Collections.Generic; using System.Text; using vCardLib.Models; namespace vCardLib.Serializers { /// <summary> /// Handles the serialization of version 4 cards /// </summary> internal class v4Serializer : Serializer { protected override void AddVersion(StringBuild...
using System; using System.Collections.Generic; using System.Text; namespace DBSchemaInfo.Base { public class ForeignKeyConstraintCollection : ReadOnlyList<IForeignKeyConstraint> { public ForeignKeyConstraintCollection() : base() { IsReadOnly = false; } ...
using System; using System.Collections.Generic; using System.Threading.Tasks; using NerdStore.Core.Messages; namespace NerdStore.Core.Data.EventSourcing { public interface IEventSourcingRepository { Task SalvarEvento<TEvent>(TEvent evento) where TEvent : Event; Task<IEnumerable<StoredEvent>> O...
using Prism.Generated; using Prism.Navigation; using System.Threading.Tasks; namespace PCG.Sample.ViewModels { public class MainPageViewModel : ViewModelBase { public MainPageViewModel(INavigationService navigationService) : base(navigationService) { Title = "Main Page"...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using iCBM.Application.Commands.ConstructionStages; using iCBM.Application.Queries.ConstructionStages; using Microsoft.AspNetCore.Mvc; using Misio.Common.Auth.Attributes; using Misio.Common.CQRS.Commands.Abstractions; usin...
using io.odysz.anson; namespace io.odysz.semantic.jprotocol { public class AnsonHeader : Anson { internal string uid; // internal string ssid; public string ssid { get; } internal string iv64; internal string[] usrAct; public AnsonHeader UsrAct(string funcId, string cmd, string cate, string remarks = ...
using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Linq; using System.Windows; namespace DynamicGeometry { /// <summary> /// Interaction logic for App.xaml /// </summary> public partial class App : Application { } }
// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you ma...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; using System.Text; using Silk.NET.Core; using Silk.NET.Core.Native; using Silk.NET.Core.At...
using System.IO; namespace TpsParse.Tps { /// <summary> /// Handles the RLE (run length encoding) decoding. /// </summary> public static class RleDecoder { public static byte[] Decode(byte[] data) { using (var output = new MemoryStream()) { ...
// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ /...
using System; using System.Threading.Tasks; using SimpleOwin.Extensions; using SimpleOwin.Extensions.Stream; namespace SimpleOwin.Samples.AspNetMono { using AppFunc = System.Func<System.Collections.Generic.IDictionary<string, object>, System.Threading.Tasks.Task>; public class HelloWorldOwinApp { public static A...
// CodeContracts // // Copyright (c) Microsoft Corporation // // All rights reserved. // // MIT License // // Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including wit...
namespace eDriven.Animation.Easing { public class Quart { // ReSharper disable UnusedMember.Local public static float EaseIn(float t, float b, float c, float d, float a, float p) // ReSharper restore UnusedMember.Local { return c * (t /= d) * t * t * t + b; } // ReSharper di...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using Microsoft.AspNet.SignalR; using SignalRChat.Common; namespace SignalRChat { public class ChatHub : Hub { #region Data Members static List<UserDetail> ConnectedUsers = new List<UserDetail>(); sta...
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; using System.Linq; using tp1_restaurant.Models; namespace tp1_restaurant.Data { public class ReservationData { private List<Reservation> reservations = new List<Reservation>(); public ReservationData() ...
using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace RohanApp { public class Program { public stati...
@model SistemaGestionRENI.ConvenioFormViewModel @{ ViewBag.Title = "ConvenioForm"; Layout = "~/Views/Shared/_Layout.cshtml"; } <section> <div class="container"> @*<div class="row"> <h2>Nueva Dependencia</h2> </div>*@ <div class="row mb-3"> <div class...
namespace Cake.PlasticSCM.Merge { public enum PlasticSCMMergeComparisonMethod { IgnoreEol, IgnoreWhitespaces, IgnoreEolWhitespaces, NotIgnore } }
using JetBrains.Annotations; using LinqToDB.Data; using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; using System.Data; namespace Dingo.Core.Utils.Db { /// <summary> Database request containing information for command execution </summary> [UsedImplicitly] internal class DbRequest ...
//////////////////////////////////////////////////////////////////////////////// //NUnit tests for "EF Core Provider for LCPI OLE DB" // IBProvider and Contributors. 05.12.2020. using System; using System.Data; using System.ComponentModel.DataAnnotations; using System.ComponentMode...
@model Erps.Models.User @using PagedList.Mvc; @using WebMatrix.WebData <link href="~/Content/PagedList.css" rel="stylesheet" type="text/css" /> @{ if (User.IsInRole("Admin")) { Layout = "~/Views/Shared/_AdminLayout.cshtml"; } else if (User.IsInRole("User")) { Layout = "~/Views/S...
// <auto-generated> // Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/cloud/talent/v4/completion_service.proto // </auto-generated> // Original file comments: // Copyright 2020 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this fi...
//////////////////////////////////////////////////////////////////////////// // <copyright file="CmdScopeMapEntry.cs" company="Intel Corporation"> // // Copyright (c) 2013-2017 Intel Corporation  // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance wit...
namespace Poseidon.Infrastructure.ClientDx { partial class FrmMaintenanceInfoEdit { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. ...
using System; using System.IO; using System.Text; namespace NetTopologySuite { public abstract partial class Geography { /// <summary> /// TODO: xmldoc. /// </summary> // [geography]::STGeomFromWKB(WKB_geography, SRID) public static Geography Load(Stream wkb, int spatia...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EpiDashboard { public struct FieldFlags { public bool IsDropDownListField; public bool IsCommentLegalField; public bool IsOptionField; public bool IsRecodedField; public Fie...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; using System.Threading; namespace Azure.Messaging.ServiceBus.Core { /// <summary> /// The set of extensions for the <see cref="CancellationToken" /> /// struct. /// </summary> /// ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { int a = int.Parse(Console.ReadLine()); int b = 0; int i = 0; while(a > 0) ...
using Melanchall.DryWetMidi.Common; using Melanchall.DryWetMidi.Core; using Melanchall.DryWetMidi.Interaction; using Melanchall.DryWetMidi.Tests.Utilities; using Melanchall.DryWetMidi.Tools; using NUnit.Framework; using System; using System.Collections.Generic; using System.Linq; namespace Melanchall.DryWetMidi.Tests...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Con...
using Azure.Messaging.ServiceBus; using CommonUtils; using Microsoft.Extensions.Azure; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using SPOAzBlob.Engine; namespace SPOAzBlob.Functions { public class Program { public sta...
using FluentScheduler; using Serilog; using YouFoos.DataAccess.Repositories; namespace YouFoos.GameEventsService.ScheduledTasks { public class DeleteStaleGamesTask : IJob { public const int StaleTimeMinutes = 30; private readonly IGamesRepository _gamesRepository; /// <summary> ...
using System; using System.Reflection; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: Asse...
using Avalonia.Controls; using Avalonia.Markup.Xaml; namespace BugFablesSaveEditor.Views { public class ItemsView : UserControl { public ItemsView() { InitializeComponent(); } private void InitializeComponent() { AvaloniaXamlLoader.Load(this); } } }
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyConfigurat...
 // This file was automatically generated by the code gen tool - do not modify. using System ; using scg = System.Collections.Generic ; using sd = System.Data ; using sds = System.Data.SqlClient ; using sr = System.Reflection ; using mst = Microsoft.SqlServer.Types ; using mss = Microsoft.SqlServer.Server ; using acr...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // <auto-generated/> #nullable disable using System.Collections.Generic; using System.Text.Json; using Azure.Core; namespace Azure.ResourceManager.Monitor.Models { public partial class AutoscaleNotification : IUtf8Js...
using Machine.Specifications; using Moq; using Xpand.EmailTemplateEngine; using It = Machine.Specifications.It; namespace Xpand.Tests.Xpand.EmailTemplateEngine { [Subject(typeof(EmailSubsystem))] public class When_sending_welcome_mail { static Mock<IEmailTemplateEngine> templateEngine; static M...
using System; using System.Collections.Generic; using Model; using OCUnion; using OCUnion.Transfer.Types; using ServerOnlineCity.Model; using ServerOnlineCity.Services; using Transfer; namespace ServerOnlineCity.ChatService { internal sealed class RenameChatCmd : IChatCmd { public string CmdID => "ren...
using System; namespace Rocket.Surgery.Airframe { /// <summary> /// Represents an <see cref="ITimer"/> that is observable. /// </summary> public interface IObservableTimer : ITimer, IObservable<TimeSpan> { } }
using UnityEngine; using UnityEngine.UI; public class TokenHandler : MonoBehaviour { public Text numberOfTokens; public void SetNumberOfTokens(int value) { numberOfTokens.text = value.ToString(); } }
public class MiniDragonController : MonsterControllerBase // TypeDefIndex: 7938 { // Methods // RVA: 0x235A5D0 Offset: 0x235A6D1 VA: 0x235A5D0 public void .ctor() { } }
using System.Collections; using System.Collections.Generic; using UnityEngine; public class CameraController : MonoBehaviour { private float moveSpeed = 0.4f; private Vector3 toPos; private bool MoveCamera = false; public void goUpStairs(){ toPos = new Vector3 (Camera.main.transform.position.x, Camera.main...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Threading; using System.Threading.Tasks; using Azure.Core; using Azure.Core.Pipeline; using Azure.Storage.Cryptogr...
namespace ForkingVirtualMachine.Machines { using System; public class Define : IVirtualMachine { public static readonly byte[] UID = Guid.Parse("CAFA8CAD-0807-4984-95F2-9C7B8B751BCA").ToByteArray(); public static readonly IVirtualMachine Machine = new Define(); public byte[] Id =...
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fi...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using Charlotte.Tools; namespace Charlotte { public partial class KeyDataDlg : Form { public Ground.KeyData retKeyData = null; ...
// <auto-generated> // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. // </auto-generated> namespace Gov.Jag.PillPressRegistry.Interfaces.Models { using Newtonsoft.Json; using System.Collections; using System....
// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using Microsoft.SqlTools.Hosting.Protocol.Contracts; namespace Microsoft.SqlTools.ServiceLayer.Scripting.Contracts { /// <summary> /// Parameters to can...
 namespace SkunkLab.Protocols.Coap { public enum MediaType { TextPlain = 0, LinkFormat = 40, Xml = 41, OctetStream = 42, Exi = 47, Json = 50 } }
/* * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * ...
#region license // Transformalize // Configurable Extract, Transform, and Load // Copyright 2013-2017 Dale Newman // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://...
//=================================================================================================== // Source Control URL : $HeadURL: file:///D:/svn/branch/3.1.7.0/GeoUtility/GeoSystem/Helper/GeoPoint.cs $ // Last changed by : $LastChangedBy: sh $ // Revision : $LastChangedRevision: 255 $ // Last change...
namespace MVCHoldem.Web { using System.Web.Mvc; public class FilterConfig { public static void RegisterGlobalFilters(GlobalFilterCollection filters) { filters.Add(new HandleErrorAttribute()); } } }
//----------------------------------------------------------------------- // <copyright file="DateTimeHelpers.cs" company="AFS"> // This source code is part of Netsy http://github.com/AnthonySteele/Netsy/ // and is made available under the terms of the Microsoft Public License (Ms-PL) // http://www.opensource.org/l...
// -------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // -------------------------------------------------------------------------- using System.Collections.Generic; using System.Threading.Tasks; ...
using AssertLibrary; using Cfoan.Automation.Model; using log4net; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Configuration; using System.Diagnostics; using System.IO; using System.Linq; using System.Text; using System.Threading; using Syste...
namespace Microsoft.Azure.PowerShell.Cmdlets.BotService.Models.Api20180712 { using Microsoft.Azure.PowerShell.Cmdlets.BotService.Runtime.PowerShell; /// <summary>The list of bot service operation response.</summary> [System.ComponentModel.TypeConverter(typeof(BotResponseListTypeConverter))] public part...
using System; using Lyn.Protocol.Bolt1.Messages; namespace Lyn.Protocol.Bolt1.Entities { public class TrackedPingPong { public DateTime Created { get; set; } public PingMessage PingMessage { get; set; } public bool PongReceived { get; set; } } }
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Diagnostics.Contracts; using System.Xml.Linq; using System.Diagnostics; namespace PumpingLemma { // These should probably be case classes // C# does not have case classes ...
using GTA.Math; using GTA.Native; using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Drawing; using System.Linq; namespace GTA { enum ZoneID { AIRP, ALAMO, ALTA, ARMYB, BANHAMC, BANNING, BEACH, BHAMCA, BRADP, BRADT, BURTON, CALAFB, CANNY, CC...
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="NamedValue{TValue}Test.cs" company="OBeautifulCode"> // Copyright (c) OBeautifulCode 2018. All rights reserved. // </copyright> // ----------------------------------------------...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging;...
using System; namespace ThirdPartyExtension { [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] public class LockAttribute : Attribute { public string Key { get; set; } public LockMode Mode { get; set; } = LockMode.XLock; public int Order{ get; set; } } }
using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; using System.IO; // Basr classes for section handling namespace UnityEditor.iOS.Xcode.PBX { // common base internal abstract class SectionBase { public abstract void ...
using Mono.Linker.Tests.Cases.Expectations.Assertions; namespace Mono.Linker.Tests.Cases.Inheritance.Interfaces.OnReferenceType { class ClassImplemtingInterfaceMethodsThroughBaseClass5 { public static void Main () { new A (); } interface IFoo { void Foo (); } [KeptMember (".ctor()")] class B { ...
#region Copyright Syncfusion Inc. 2001-2021. // Copyright Syncfusion Inc. 2001-2021. All rights reserved. // Use of this code is subject to the terms of our license. // A copy of the current license can be obtained at any time by e-mailing // licensing@syncfusion.com. Any infringement will be prosecuted under // applic...
// Copyright 2021 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in ...
using System; using System.Collections.Generic; using UnityEngine; [RequireComponent(typeof(RectTransform))] public class LifeGaugeContainer : MonoBehaviour { public static LifeGaugeContainer Instance { get { return _instance; } } private static LifeGaugeContainer _instance; [SerializeFi...
using Unity.Collections; namespace UniNativeLinq { public struct IntersectOperation<TEnumerable0, TEnumerator0, TEnumerable1, TEnumerator1, T, TComparer> : ISetOperation<TEnumerable0, TEnumerator0, TEnumerable1, TEnumerator1, T> where T : unmanaged where TEnumerator0 : struct, IRef...
// SPDX-License-Identifier: MIT // ATTENTION: This file is automatically generated. Do not edit manually. #nullable enable namespace GISharp.Lib.Gtk { /// <include file="CellRendererMode.xmldoc" path="declaration/member[@name='CellRendererMode']/*" /> [GISharp.Runtime.GTypeAttribute("GtkCellRendererMode", IsPro...
using System; using System.Data; using ECMPS.Checks.CheckEngine; using ECMPS.Checks.Parameters; using ECMPS.Checks.TypeUtilities; using ECMPS.Definitions.Extensions; using ECMPS.ErrorSuppression; namespace ECMPS.Checks.EmissionsReport { public class cCO2O2RATAStatusCategory : cCategoryHourly { #region Const...
using Microsoft.Data.Sqlite; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage; using Microsoft.Extensions.DependencyInjection; using Volo.Abp; using Volo.Abp.EntityFrameworkCore; using Volo.Abp.EntityFrameworkCore.Sqlite; using Volo.Ab...
// // Copyright (c) 2002-2016 Mirko Matytschak // (www.netdataobjects.de) // // Author: Mirko Matytschak // // Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated // documentation files (the "Software"), to deal in the Software without restriction, including w...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using Fos.Models; using Fos.Models.DishViewModels; using Fos.Options; using Fos.Repositories.Contracts; using Fos.Storage; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Hosting; usin...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Logging; namespace ModernAuth_UI { public class Program { ...
//------------------------------------------------------------------------------ // <auto-generated> // Generated by the MSBuild WriteCodeFragment class. // </auto-generated> //------------------------------------------------------------------------------ using System; using System.Reflection; [assembly: System.R...
//============================================================================== // Copyright (c) 2012-2021 Fiats Inc. All rights reserved. // Licensed under the MIT license. See LICENSE.txt in the solution folder for // full license information. // https://www.fiats.asia/ // Fiats Inc. Nakano, Tokyo, Japan // using ...
@using Store.Web.Areas.HelpPage.ModelDescriptions @model ComplexTypeModelDescription @Html.DisplayFor(m => m.Properties, "Parameters")
using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Text; using System.Xml; using System.Xml.Serialization; namespace Aspire.Utilities.Extensions { public static class ObjectExtensions { /// <summary> /// Determines whether this System.Object is contained in t...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; using System.Windows; using System.Windows.Data; using System.Windows.Input; using AcManager.Controls.Helpers; using AcManag...
using System; using System.Collections.Generic; using System.IO; using System.Linq; // using System.ServiceModel.Web; using System.Text; using System.Web; namespace sql4js.Helpers.WebHelpers { /*public static class JsonServiceHelper { public static Stream ToStream( String FileName, ...
using System; using System.Collections.Generic; using System.Text; namespace MqttLib.Core.Messages { internal class MqttSubackMessage : MqttAcknowledgeMessage { private QoS[] grantedQos; public MqttSubackMessage(System.IO.Stream str, byte header) : base(str, header) { // Not...
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; using System.Diagnostics; using System.Threading; using Analyzer.Utilities; using Microsoft.CodeAnalysis.Di...
using Nito.AsyncEx; using System; using System.IO; using System.Linq; using System.Net; using System.Net.Sockets; using System.Threading.Tasks; using WalletWasabi.Exceptions; using WalletWasabi.Helpers; using WalletWasabi.Logging; using WalletWasabi.TorSocks5.Models.Fields.OctetFields; using WalletWasabi.TorSocks5.Mode...
namespace UAlbion.Formats.Assets.Map { public enum MapType : byte { Unknown = 0, ThreeD = 1, TwoD = 2, TwoDOutdoors = 3, } }
// // Authors: // Rafael Mizrahi <rafim@mainsoft.com> // Erez Lotan <erezl@mainsoft.com> // Vladimir Krasnov <vladimirk@mainsoft.com> // // // Copyright (c) 2002-2005 Mainsoft Corporation. // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated...
using System.Linq; using System.Runtime.Versioning; using System.Threading.Tasks; using NuGet.Test.Mocks; using Xunit; namespace NuGet.Test { public class NetPortableProfileTableTest { [Fact] public async Task NetPortableProfileTable_LoadTestForThreadSafety() { // Arrange ...