text stringlengths 1 932k |
|---|
using MongoDB.Driver;
using MongoDB.Extensions.Context.Internal;
namespace MongoDB.Extensions.Context
{
internal class MongoDbContextData
{
private readonly IMongoCollections _mongoCollections;
private readonly object _lockObject = new object();
public MongoDbContextData(
I... |
using System;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
using OneBitTask.Data.Entities;
using OneBitTask.Data.Enums;
using OneBitTask.Data.Interfaces;
namespace OneBitTask.Data
{
public class ApplicationDbContext : DbContext
{
public ApplicationDbContext(DbC... |
using Polygon.Helpers;
using Polygon.Models;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Polygon
{
public class Reference
{
private readonly string _resource = "";
private readonly IPolygonClient _client;
internal Reference(IPolygonClient client) { _client = client;... |
using System.Collections.Generic;
using System.Linq;
using adventOfCode.Domain;
using adventOfCode.Serialization;
using Xunit;
namespace adventOfCode.tests.Serialization
{
public class PassportSerializerTests
{
string passportsInput = @"ecl:gry pid:860033327 eyr:2020 hcl:#fffffd
byr:1937 iyr:2017 cid:... |
namespace GLifeInc.Shared.Constants.Application
{
public static class ApplicationConstants
{
public static class SignalR
{
public const string HubUrl = "/signalRHub";
public const string SendUpdateDashboard = "UpdateDashboardAsync";
public const string Receiv... |
namespace PrimeFuncPack;
partial class Dependency<T1, T2>
{
public Dependency<T1, T2, T3, T4, T5, T6> With<T3, T4, T5, T6>(
T3 third,
T4 fourth,
T5 fifth,
T6 sixth)
=>
new(
firstResolver,
secondResolver,
_ => third,
_ =... |
namespace Sisyphus.Core
{
public interface IBackgroundJobSchedule
{
string GetSchedule();
}
} |
// <copyright file="BrowserLaunchTestBehaviorObserver.cs" company="Automate The Planet Ltd.">
// Copyright 2020 Automate The Planet Ltd.
// 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... |
using System.Reflection;
using SkbKontur.TypeScript.ContractGenerator.Abstractions;
namespace SkbKontur.TypeScript.ContractGenerator.Internals
{
public class ParameterWrapper : IParameterInfo
{
public ParameterWrapper(ParameterInfo parameter)
{
Parameter = parameter;
}
... |
using Microsoft.Extensions.DependencyInjection;
using tournament.Infrastructure;
using tournament.Infrastructure.DataBase.Models;
using tournament.Infrastructure.Repositories;
using tournament.Infrastructure.Repositories.Interfaces;
using tournament.Models;
using tournament.Services;
using tournament.Services.Interfac... |
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace At
{
public class DiagnosticsBag : IEnumerable<AtDiagnostic>
{
Lazy<List<AtDiagnostic>> diagnostics = new Lazy<List<AtDiagnostic>>();
public int Count => dia... |
using OpenTK;
using OpenTK.Input;
using Ryujinx.HLE.Input;
using System;
namespace Ryujinx.Ui.Input
{
public enum ControllerInputId
{
Button0,
Button1,
Button2,
Button3,
Button4,
Button5,
Button6,
Button7,
Button8,
Button9,
... |
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace Ianitor.Osp.Common.Shared.Exchange
{
public class CkEntityAssociation
{
[JsonProperty("roleId")]
public string RoleId { get; set; }
[JsonProperty("targetCkId")]
public string TargetCkId { get; set; }
[... |
using System;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Net;
using HesaEngine.SDK;
using Microsoft.Win32;
using Newtonsoft.Json.Linq;
using SharpDX;
using SharpDX.Direct3D9;
namespace FoxyStats
{
internal class PlayerStats
{
private ColorBGRA _contains = new ColorBGRA(0, 2... |
// *** 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... |
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Microsoft.Azure.Devices.Common;
using Microsoft.Azure.Devices.Common.Service.Auth;
using Microsoft.Azure.Devices.Shared;
using System;
using System.Collections.G... |
using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle ("DefiCOM_WebSocket_Server")]
[assembly: AssemblyDescription ("")]
[assembly: AssemblyConfiguration... |
// <copyright file="ICurrentDateTimeProvider.cs" company="Rnwood.SmtpServer project contributors">
// Copyright (c) Rnwood.SmtpServer project contributors. All rights reserved.
// Licensed under the BSD license. See LICENSE.md file in the project root for full license information.
// </copyright>
namespace Rnwood.Smt... |
using System;
using System.Reflection;
namespace TestImplAssembly
{
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Module)]
public class NormalAttribute : Attribute
{
public BindingFlags[] PropertyFlags { get; set; }
public Type[] ExceptedDeclaringTypes { get; set; }
... |
using IgOutlook.Infrastructure;
using IgOutlook.Modules.Calendar.Menus;
using System.Windows.Controls;
namespace IgOutlook.Modules.Calendar.Views
{
[RibbonTab(typeof(HomeTab))]
public partial class CalendarView : IgOutlook.Infrastructure.ViewBase
{
public CalendarView(CalendarViewModel viewModel)... |
using System.Linq;
using NUnit.Framework;
using Mono.CecilX.Rocks;
namespace Mono.CecilX.Tests {
[TestFixture]
public class MethodDefinitionRocksTests : BaseTestFixture {
abstract class Foo {
public abstract void DoFoo ();
public abstract void DoBar ();
}
class Bar : Foo {
public override void Do... |
using System;
using System.IO;
using System.Text.Json;
using System.Threading.Tasks;
using Omnius.Core.Helpers;
using Omnius.Core.Utils;
namespace Omnius.Xeus.Ui.Desktop.Configuration
{
public sealed partial class UiState
{
public static async ValueTask<UiState?> LoadAsync(string configPath)
{
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using Microsoft.Extensions.Logging;
using YourSpace.Areas.Identity;
namespace YourSpace.Areas.Identity.Pages.... |
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** 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;
names... |
namespace Mvp.Xml.Design.VisualStudio {
using System;
using System.Runtime.InteropServices;
[
ComImport,
Guid("FC4801A3-2BA9-11CF-A229-00AA003D7352"),
InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)
]
internal interface IObjectWithSite {
//
//... |
using Serialize.Linq.Interfaces;
using Serialize.Linq.Nodes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Runtime.Serialization;
using System.Text;
namespace SerializationHelpers.Extensions.ExpressionNodes
{
public class NewExpressionNode : Seriali... |
namespace Identity.API.Models.ConsentViewModels
{
public record ConsentOptions
{
public static bool EnableOfflineAccess = true;
public static string OfflineAccessDisplayName = "Offline Access";
public static string OfflineAccessDescription = "Access to your applications and resources, e... |
using AutoMapper;
using Core.Features.Common;
using Database;
using Domain.Dtos;
using Domain.Entities;
using Domain.Wrapper;
using MediatR;
namespace Core.Features.Subreddits.Commands;
internal class SubredditCommandHandler : BaseCommandHandler, IRequestHandler<AddSubredditCommand, Result<SubredditDto>>
{
#regi... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using Netch.Models;
using Netch.Utils;
using Timer = System.Timers.Timer;
namespace Netch.Controllers
{
public abstract class Guard
... |
// *****************************************************************************
// BSD 3-Clause License (https://github.com/ComponentFactory/Krypton/blob/master/LICENSE)
// © Component Factory Pty Ltd, 2006 - 2016, All rights reserved.
// The software and associated documentation supplied hereunder are the
// prop... |
using NLog;
using Playnite.SDK.Models;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Playnite
{
public class MultiEditGame : Game
{
public List<Guid> DistinctGenreIds { get; set; }
public ... |
using System.Threading.Tasks;
using Nethereum.Hex.HexTypes;
using Nethereum.JsonRpc.Client;
namespace Nethereum.RPC.Web3
{
/// <summary>
/// web3_sha3
/// Returns Keccak-256 (not the standardized SHA3-256) of the given data.
/// Parameters
/// 1. String - the data to convert into... |
using System;
using System.Collections.Generic;
using System.Text;
namespace eXtensoft.XF.Data.Abstractions
{
public class DataProviderDescriptor
{
public DataProviderDescriptor(
Type modelType,
Type dataProviderType,
DataProviderLifetime lifetime)
:thi... |
using System;
using Xwt;
namespace DataWF.Gui
{
public class CellEditorPath : CellEditorText
{
private static FileDialog picker;
public CellEditorPath() : base()
{
DropDownWindow = false;
HandleText = false;
}
private void OnDropDownClick(objec... |
using SommeWhat.Views;
using Xamarin.Forms;
using Microsoft.Azure.Mobile;
using Microsoft.Azure.Mobile.Analytics;
using Microsoft.Azure.Mobile.Crashes;
namespace SommeWhat
{
public partial class App : Application
{
private static ViewModelLocator _locator;
internal static ViewModelLocator Locator
{
get
... |
using System;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using SimplCommerce.Infrastructure.Data;
using SimplCommerce.Module.Core.Extensions;
using SimplCommerce.Module.Orders.Services;
using SimplCommerce.Module.Pay... |
/*
* Copyright (c) Tunnel Vision Laboratories, LLC. All rights reserved.
* Licensed under the MIT license. See LICENSE file in the project root for full license information.
* Modified for use in Asm4GCN. See https://github.com/tunnelvisionlabs/NOpenCL for original.*/
namespace NOpenCL
{
using System;
int... |
using Foundatio.Queues;
using Xunit;
namespace Foundatio.AWS.Tests.Queues {
public class SQSQueueConnectionStringBuilderTests: ConnectionStringBuilderTests {
protected override AmazonConnectionStringBuilder CreateConnectionStringBuilder(string connectionString) {
return new SQSQueueConnectionS... |
#region License
/*
The MIT License
Copyright (c) 2008 Sky Morey
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 without limitation the rights
to use, copy, modify, ... |
using System.Reflection;
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("PatRec3")]
[assembly: AssemblyDescription... |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//--... |
//------------------------------------------------------------------------------
// <copyright file="OutputCacheSettingsSection.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
nam... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StepExtractor.EntityModels
{
/// <summary>
/// Интерфейс, который должны наследовать все сущности.
/// </summary>
public interface IEntityModel
{
/// <summary>
... |
/*
* Copyright 2018 Sage Intacct, Inc.
*
* 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
*
* or in the "LICENSE" file accompanying t... |
namespace MyBlog.Server.Features.Identity.Models
{
using System.ComponentModel.DataAnnotations;
public class LoginRequestModel
{
[Required]
public string UserName { get; set; }
[Required]
public string Password { get; set; }
}
} |
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System.Collections.Generic;
using System.Reflection;
namespace System.Web.Mvc
{
internal static class ActionDescriptorHelper
{
public static ICollection<ActionSel... |
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
// Ported from um/MsHTML.h in the Windows SDK for Windows 10.0.20348.0
// Original source is Copyright © Microsoft. All rights reserved.
using NUnit.Framework;
using System... |
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Rulesets.Objects.Types;
namespace osu.Game.Rulesets.Objects.Legacy.Mania
{
/// <summary>
/// Legacy osu!mania Spinner-type, used for parsing Bea... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using GreenDonut;
using HotChocolate.DataLoader;
using HotChocolate.Resolvers;
using HotChocolate.Tests;
using Microsoft.Extensions.DependencyInjection;
using Snapshooter.Xunit;
using Xunit;
using static HotChocolate.Tests... |
using CoffeeApp.Models.Abstraction.Enums;
namespace CoffeeApp.Models.Abstraction;
public interface IDrink
{
int GetMilkQuantity();
int GetBeanQuantity();
DrinkType GetDrinkType();
} |
using Centaurus.Xdr;
using System;
using System.Collections.Generic;
using System.Text;
using System.Linq;
namespace Centaurus.ContractGenerator
{
public class JavaScriptContractGenerator : ContractGenerator
{
public JavaScriptContractGenerator()
{
MapType(new PrimitiveTypeDescript... |
namespace HitF5.Factorial
{
public interface IFactorialCalculator
{
int Calculate(int value);
}
} |
using Sigil.NonGeneric;
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Reflection.Emit;
using Xunit;
namespace SigilTests
{
public partial class Calls
{
[Fact]
public void ValueTypeCallIndirectNonGeneric()
{
var hasValue = typeof(int?)... |
/*
Copyright 2019 Pitney Bowes Inc.
Licensed under the MIT License(the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License in the README file or at
https://opensource.org/licenses/MIT
Unless required by applicable law or agreed to in writing, softwar... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Xtzp.Linq.BatchEnumerable.Aggregate
{
/// <summary>
///
/// </summary>
public static class Enumerable
{
/// <summary>
/// iterates all items in batches. e... |
using OpenPGN.Models;
using System;
using System.ComponentModel;
namespace StockFischer.Engine;
public class UCIMove
{
public Square From { get; set; }
public Square To { get; set; }
public PieceType? PromotedPiece { get; set; }
public override string ToString() => $"{From}{To}{PromotedPiece}";
... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
namespace HonasProtractor
{
public partial class ProtractorCtrl : UserControl
{
public deleg... |
namespace OpenShopVHBackend.Migrations
{
using System;
using System.Data.Entity.Migrations;
public partial class Wishlist : DbMigration
{
public override void Up()
{
CreateTable(
"dbo.WishlistItems",
c => new
{
... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using Microsoft.TemplateEngine.Abstractions.Installer;
using Newtonsoft.Json;
namespace Microsoft.TemplateEngine.Edge.BuiltInManagedProvider
{
... |
using ADLCore.Alert;
using ADLCore.Ext;
using ADLCore.Interfaces;
using ADLCore.Novels;
using ADLCore.Novels.Models;
using ADLCore.Video.Constructs;
using HtmlAgilityPack;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Text;
using System.Text.RegularExpressions;
using... |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Security;
// 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.
[assem... |
using Essential.Core.UI.Table.Data;
using UnityEngine;
namespace Essential.Core.UI.Table
{
public class CustomTableEditor : TableEditor
{
protected new void Awake()
{
base.Awake();
// Test
CreateCustomRow("player1", "gamepad", "nothing", "5", "Has no items");
}
public void CreateCustomRow(string... |
// Copyright 2022 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 ... |
///
/// See COPYING file for licensing information
///
using System;
using System.Collections.Generic;
using com.mosso.cloudfiles.domain.request.Interfaces;
using com.mosso.cloudfiles.exceptions;
using com.mosso.cloudfiles.utils;
namespace com.mosso.cloudfiles.domain.request
{
/// <summary>
/// SetStorageItem... |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//---... |
// The MIT License(MIT)
//
// Copyright(c) 2021 Alberto Rodriguez Orozco & LiveCharts Contributors
//
// 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 withou... |
/*
* 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 ... |
using FluentAutomation.Exceptions;
using FluentAutomation.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FluentAutomation
{
public class ElementProxy
{
/// <summary>
/// Base constructor should not be executed by user-code. Exists fo... |
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Mono.Cecil;
using Mono.Cecil.Cil;
using Xamarin.Forms.Xaml;
namespace Xamarin.Forms.Build.Tasks
{
public class XamlCTask : XamlTask
{
bool hasCompiledXamlResources;
public bool KeepXamlResources { get; set; }
public boo... |
using System;
using System.Collections.Generic;
using System.IO;
using System.Security.Claims;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using Microsoft.IdentityModel.JsonWebTokens;
using Microsoft.IdentityModel.Tokens;
using Newtonsoft.Json;
namespace CDR.DataRecipient.... |
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("Au... |
using System;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Caching.Memory;
using Microsoft.Extensions.Options;
using OpenIddict.EntityFrameworkCore;
using OpenIddict.EntityFrameworkCore.Models;
using OrchardCore.OpenId.Abstractions.Stores;
namesp... |
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
// Ported from um/wincrypt.h in the Windows SDK for Windows 10.0.20348.0
// Original source is Copyright © Microsoft. All rights reserved.
using System;
namespace TerraFX.... |
namespace PulseMusic
{
public class MessengerKeys
{
public const string App = "PulseMusic";
public const string Play = "Play";
}
} |
using System;
using System.Collections.Generic;
using System.Text;
namespace dpz3.ssr {
/// <summary>
/// 事件宿主接口
/// </summary>
public interface IHost {
void OnRecieve(HostRecieveEventArgs e);
}
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace HomeAutomation.Entities.Enums
{
public enum ScheduleMode
{
Time,
Sunrise,
Sunset
}
} |
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
namespace Blaz... |
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel.Composition;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Grabacr07.KanColleViewer.Composition;
using Grabacr07.KanColleWrapper;
using System.Windows.Controls;
using Grabacr07... |
using SFML.Graphics;
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using Tbin;
namespace XNB.TypeReaders
{
public class TextureReader : TypeReader
{
public object Read(BinaryReader reader, string fullDecl)
{
int format = reader.ReadInt32();
... |
using System.Reflection;
using AutoMapper;
using BookStore.Application.Common.Interfaces;
using BookStore.Application.Baskets.Services;
using MediatR;
using Microsoft.Extensions.DependencyInjection;
namespace BookStore.Application
{
public static class DependencyInjection
{
public static IServiceColle... |
/* ========================================================================
* Copyright (c) 2005-2016 The OPC Foundation, Inc. All rights reserved.
*
* OPC Reciprocal Community License ("RCL") Version 1.00
*
* Unless explicitly acquired and licensed from Licensor under another
* license, the contents of this file... |
#region License
//
// Copyright (c) 2013, Kooboo team
//
// Licensed under the BSD License
// See the file LICENSE.txt for details.
//
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Kooboo.CMS.Sites.Extension
{
/// <summary>
/// The base interface... |
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("08.... |
using Unity.Burst;
using Unity.Collections;
using Unity.Entities;
using Unity.Jobs;
using Unity.Mathematics;
using Unity.Transforms;
using UnityEngine.UIElements;
public class UnitSpawn_System : SystemBase
{
private BeginInitializationEntityCommandBufferSystem ei_ECB;
public float elapsedTime;
protect... |
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("04... |
namespace HousingSearchListener.V1.Boundary
{
public static class EventTypes
{
public const string PersonCreatedEvent = "PersonCreatedEvent";
public const string PersonUpdatedEvent = "PersonUpdatedEvent";
public const string TenureCreatedEvent = "TenureCreatedEvent";
public con... |
/*
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
usin... |
using System.Collections;
using System.Collections.Generic;
using JetBrains.Annotations;
using UnityEngine;
public class ObjectDefinition : MonoBehaviour
{
public int ItemId;
public InventoryItem WorldObjectItemData = new InventoryItem();
[UsedImplicitly]
public void Start()
{
if (ItemId ... |
@model Foodilizer_Group35.Models.Food
@{
ViewData["Title"] = "MenuCreate";
Layout = "~/Views/Shared/_store_admin_layout.cshtml";
}
<main>
<div class="container-fluid px-4">
<div class="row">
<div class="col-8">
<h1 class="mt-4">Add New Menu Item</h1>
<o... |
namespace NeedForSpeed.Interfaces
{
using System.Collections.Generic;
public interface ICarFactory
{
ICar CreateCar(IList<string> arguments);
}
} |
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
namespace NatesJauntyTools
{
public class Model : MonoBehaviour
{
[SerializeField] bool debugPointsOnDraw;
[SerializeField] GameObject pointDebuggerPrefab;
List<GameObject> instantiatedPointDebuggers... |
namespace SwedbankPay.Sdk.PaymentInstruments.Invoice
{
internal class InvoicePaymentRequestDto
{
public InvoicePaymentRequestDto(InvoicePaymentRequest paymentRequest)
{
Payment = new PaymentRequestDetailsDto(paymentRequest.Payment);
Invoice = new InvoiceDetailsDto(paymen... |
using Sandbox.Common.ObjectBuilders;
using Sandbox.Game.GameSystems;
using Sandbox.Game.GameSystems.Conveyors;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using VRage.ObjectBuilders;
namespace Sandbox.Game
{
partial class MyInventory : Sandbox.ModAPI.Interfaces.IMyInvento... |
using System;
using System.Collections.Generic;
#nullable disable
namespace MarvelApi.Models
{
public partial class ComicsStory
{
public int? IdComic { get; set; }
public int? IdStories { get; set; }
public virtual Comic IdComicNavigation { get; set; }
public virtual Story Id... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace SisVentas
{
public partial class Form1 : Form
{
public Form1()
{
... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class ObjectPanelUpdate : MonoBehaviour
{
public RectTransform refer;
public RectTransform panel;
public ObjectHolder obj;
private List<ObjectHolder> uuus = new List<ObjectHolder>();
void S... |
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Net.WebSockets;
namespace LogApi
{
public class RequestContainer
{
public RequestContainer()
{
WebSockets = new List<WebSocket>();
ClientLogs = new ConcurrentDictionary<string, LogModel>... |
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using SIO.Domain.Notifications.Commands;
using SIO.Infrastructure;
using SIO.Infrastructure.Commands;
using SIO.Infrastructure.EntityFrameworkCore.DbContexts;
usin... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ParkApp.Models
{
public class Usuario
{
public int ID { get; set; }
public string Nome { get; set; }
public string Login { get; set; }
public string Sen... |
namespace SfSdk.Contracts
{
using System;
/// <summary>
/// Contains information about a sub-server of a country where S&F is available.
/// </summary>
public interface IServer
{
/// <summary>
/// Gets the server's name.
/// </summary>
string ServerN... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.