text stringlengths 1 932k |
|---|
using Microsoft.AspNetCore.Mvc;
using Mzg.Flow;
using Mzg.Flow.Abstractions;
using Mzg.Infrastructure.Utility;
using Mzg.Schema.Entity;
using Mzg.Sdk.Client;
using Mzg.Sdk.Extensions;
using Mzg.Web.Framework.Context;
using Mzg.Web.Framework.Controller;
using Mzg.Web.Models;
using System;
using System.ComponentModel;
... |
// 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 Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Text;
using Roslyn.Test.Utilities;
using Xunit;
namespace Microsoft.CodeAnalysis.Editor.CSharp.Uni... |
/********************************************
* Copyright(c): 2018 Victor Klepikov *
* *
* Profile: http://u3d.as/5Fb *
* Support: http://smart-assets.org *
********************************************/
namespace TouchControlsKit
{
// Used for id... |
namespace GlimpseCore.Agent.Inspectors
{
public interface IInspectorFunction
{
void Configure(IInspectorFunctionBuilder inspectorBuilder);
}
} |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information
using System.Globalization;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using... |
namespace Theta.Structures
{
/// <summary>A self-sorting binary tree based on grouping nodes together at the same height.</summary>
/// <typeparam name="T">The generic type of this data structure.</typeparam>
public interface BTree<T> : Structure<T>,
// Structure Properties
Structure.Clearable<T>,
Structure.A... |
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace DurableTask.Netherite.Tests
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.Serialization;
using System.Threading;
using System.Threading.Tasks;
using Durab... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class IntermediateCommunicatorBetweenPowerManagerAndPushPower : MonoBehaviour
{
public PowerMangerScript powerManagerScriptReference;
public PushPowerControlScript pushPowerControlScriptReference;
// Start is called bef... |
/*
* Farseer Physics Engine based on Box2D.XNA port:
* Copyright (c) 2010 Ian Qvist
*
* Box2D.XNA port of Box2D:
* Copyright (c) 2009 Brandon Furtwangler, Nathan Furtwangler
*
* Original source Box2D:
* Copyright (c) 2006-2009 Erin Catto http://www.gphysics.com
*
* This software is provided 'as-is', without any exp... |
using AuthenticationJwt.Core.Base.Interface;
using AuthenticationJwt.Domain.Entities;
namespace AuthenticationJwt.Domain.Interfaces.Repository
{
public interface IUserRepository : IGenericRepository<User>
{
bool UserExists(string username);
}
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading;
using System.Threading.Channels;
using System.Threading.Tasks;
using DataCore.Adapter.Extensions;
using DataCore.Adapter.Proxy;
using IntelligentPlant.BackgroundTasks;
... |
using WebArchivProject.Models.DTO;
namespace WebArchivProject.Contracts
{
public interface IServStartItemsCash
{
DtoStartItem StartItem { get; }
void InitStartItemCash();
void UpdateStartItem(DtoStartItem dtoStartItem);
}
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using AspNetCoreWithPowerShell.Filters;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.HttpsPolicy;
using Microsoft.AspNetCore.Mvc;
using... |
using SharedEntities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
namespace SampleWebSite.Controllers
{
[RoutePrefix("api/thing")]
public class ThingController : ApiController
{
// GET api/values/5
publi... |
using Amazon.JSII.Runtime.Deputy;
#pragma warning disable CS0672,CS0809,CS1591
namespace aws
{
#pragma warning disable CS8618
[JsiiByValue(fqn: "aws.Wafv2RuleGroupRuleStatementOrStatementStatementAndStatementStatementByteMatchStatementFieldToMatchSingleQueryArgument")]
public class Wafv2RuleGroupRuleStat... |
#pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "074E5C30468F0EE366F84B56E7A00BEB4864C83456D179F4C6CAB31B6CE5FB67"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.4... |
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 System.IO;
namespace clinik-sinohe_application
{
public partial class nobatdehi : Form
{
public nobatdehi()
... |
using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ordering.Application.Features.Orders.Commands.DeleteOrder
{
public class DeleteOrderCommand : IRequest
{
public int Id { get; set; }
}
} |
using System.Collections.Generic;
using Interfaces.TextObjectModel.Sentences;
namespace Interfaces.TextObjectModel
{
public interface IText
{
IList<ISentence> Sentences { get; }
}
} |
using System.IO;
namespace MO.Common.IO
{
//============================================================
// <T>字节流文件。</T>
//
// @history MAOCY 140425
//============================================================
public class FByteFile : FByteStream
{
//=====================================... |
using System;
using Rehborn.AspNetAutoFacExample.Domain.SeedWork;
namespace Rehborn.AspNetAutoFacExample.Domain
{
public class Value : IAggregateRoot
{
public static Value Create(string text)
{
return new Value(Guid.NewGuid(), text);
}
private Value(Guid id, string... |
using SolutionCreator.Dto;
namespace SolutionCreator.SolutionNameReplacerService.Interfaces
{
public interface ISolutionNameReplacer
{
void Replace(string newSolutionDir, SolutionName solutionName);
}
} |
using System;
using System.Threading.Tasks;
using Windows.Devices.Geolocation;
using Param_ItemNamespace.Helpers;
namespace Param_ItemNamespace.Services
{
public interface ILocationService
{
Geoposition CurrentPosition { get; }
event EventHandler<Geoposition> PositionChanged;
Task<bo... |
// <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
{
using Models;
using System.Collections;
using System.Collections.Gene... |
using System.Windows;
namespace WPF4
{
/// <summary>
/// MainWindow.xaml の相互作用ロジック
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}
} |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Microsoft.CodeAnalysis.PersistentStorage;
namespace Microsoft.CodeAnalysis.Editor.Implementation.Classificat... |
using System;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Gear.Domain.Infrastructure;
using Gear.Domain.PmEntities.Enums;
using Gear.Manager.Core.Interfaces;
using Gear.ProjectManagement.Manager.Domain.ProjectGroups.Queries.GetProjectGroupsWithProjects;
using MediatR;
using Microsoft... |
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading;
using Sys... |
namespace Microsoft.DotNet.Cli.Utils
{
public interface ICommandResolverPolicy
{
CompositeCommandResolver CreateCommandResolver();
}
} |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the License.txt file in the project root for more information.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Microsoft.Build.Frame... |
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.Animatio... |
using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Xml.Schema;
using System.Xml.Serialization;
namespace Workday.ResourceManagement
{
[GeneratedCode("System.Xml", "4.6.1590.0"), DesignerCategory("code"), DebuggerStepT... |
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.Generic;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Caching.Memory;
using Microsoft.Extensions.Primitives;
usin... |
using Cactus.Blade.Guard;
public static partial class GuardExtension
{
public static IGuard Null(float? input)
{
return Guard.MustBe.Null(input);
}
public static IGuard Null(float? input, string paramName)
{
return Guard.MustBe.Null(input, paramName);
}
public static IGua... |
using Microsoft.AspNetCore.SignalR;
using System.Threading.Tasks;
namespace StateOfNeo.Server.Hubs
{
public interface IFailedP2PHub
{
Task Send();
}
public class FailedP2PHub : Hub<IFailedP2PHub>
{
public async Task Send() => await Clients.All.Send();
}
} |
/*
Unity Plug-in v: 0.0.1
Copyright 2020 Adobe. All rights reserved.
This file is licensed to you 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
Unless required by... |
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using NativeWebSocket;
public class Connection : MonoBehaviour
{
WebSocket websocket;
// Start is called before the first frame update
async void Start()
{
websocket = new WebSocket("ws://echo.websocket.org");
... |
// <auto-generated />
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using control.personal.Data;
namespace control.personal.Migrations
{
[DbContext(... |
namespace Miruken.AspNet.Castle.Tests
{
using System.Security.Principal;
using System.Threading;
using Callback;
using Miruken.Castle;
using Validate;
[Filter(typeof(LogFilter<,>)),
Filter(typeof(ValidateFilter<,>))]
public class PlayerHandler : Handler
{
private static in... |
using System;
namespace TiffLibrary.Compression
{
internal readonly ref struct CcittTwoDimensionalCodingScanline
{
private readonly ReadOnlySpan<byte> _scanline;
private readonly int _width;
private readonly byte _whiteByte;
public bool IsEmpty => _scanline.IsEmpty;
... |
using System.IO;
using System.Net.Http;
using FluentAssertions;
using Microsoft.Owin.Testing;
using Owin;
using Voyage.Web.Middleware;
using Voyage.Web.UnitTests.Common;
using Xunit;
namespace Voyage.Web.UnitTests.Middleware
{
[Trait("Category", "CustomMiddleware")]
public class RewindResponseMiddlewareTests ... |
using UnityEngine;
using System.Collections;
using UniRx;
/// <summary>
/// See:
/// http://qiita.com/toRisouP/items/b6540b7f514d18b9a426
///
/// Usage:
///
/// private Animator _animator;
/// private StateMachineObservalbes _stateMachineObservables;
///
/// void Start()
/// {
/// _a... |
using cloudscribe.Web.Navigation;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace NavigationDemo.Web.Areas.Area51.Controllers
{
[Area("Area51")]
[NavNodeController(KeyPrefix = "Area51")]
public class ReflectionContr... |
/*
* Copyright 2010-2014 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 "l... |
using System;
using WebJob.MessageBus.Dispatch;
using WebJob.MessageBus.Example.Messages;
namespace WebJob.MessageBus.Example.Handlers
{
public class NewImageAddedHandler : IHandle<NewImageAdded>
{
public void Handle(NewImageAdded message)
{
Console.WriteLine($"Handling image: {mes... |
namespace Godot {
public static partial class Signals {
public class GeometryInstance : VisualInstance { }
}
} |
#region License
// DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
// Version 2, December 2004
//
// Copyright (C) 2013 Phito <phito41@gmail.com>
//
// Everyone is permitted to copy and distribute verbatim or modified
// copies of this license document, and changing it is allowed as long
// as t... |
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Text;
namespace NJSWebApp
{
public static class XmData
{
//首页显示的列表
public static DataTable GetHomeXmInfo()
{
string sSql = "select FNAME,XMCODE,GCMC,JSDW,JSDD,JDMC,X... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DD.CBU.Compute.Api.Contracts
{
/// <summary>
/// XML namespace constants for the CaaS API.
/// </summary>
public static class XmlNamespaceConstants
{
/// <summary>
/// The CaaS serv... |
using AutoMapper;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Vaquinha.Domain;
using Vaquinha.Domain.Entities;
using Vaquinha.Domain.ViewModels;
namespace Vaquinha.Service
{
public class HomeInfoService : IHomeInfoService
{
private readonly IMapper _mapper;
... |
namespace Replays
{
public struct Snapshot
{
public float Time;
public TransformState[] States;
}
} |
namespace Microsoft.NET.Sdk.Publish.Tasks.Kudu
{
public class KuduConnectionInfo
{
public string UserName { get; set; }
public string Password { get; set; }
public string SiteName { get; set; }
public string DestinationUrl { get; set; }
}
} |
using System;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.SfB.PlatformService.SDK.Common;
using Microsoft.Rtc.Internal.Platform.ResourceContract;
using Microsoft.Rtc.Internal.RestAPI.Common.MediaTypeFormatters;
using ResourceModel = Microsoft.Rtc.Internal.RestAPI.ResourceModel;
using System.Collec... |
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
#define oldschool
#define DISABLE_SCRIPT_INJECTION
using System;
using System.Collections;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Runt... |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//---------------------------------------------... |
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.Collections.Generic;
using System.Linq;
namespace ManiacEditor.Classes.Scene
{
/// <summary>
/// Defines the lines to which a ScrollInfo set of horizontal scrolling rules, applies.
/// </summary>
public class ScrollInfoLines
{
private int _startIndex;
pri... |
using System;
namespace Shuttle.Abacus
{
public class DomainException : Exception
{
public DomainException(string message) : base(message)
{
}
}
} |
using System.Threading.Tasks;
using ToDoListApi.Entities;
namespace ToDoListApi.Email
{
public interface IEmailSender
{
Task<EmailResponse> SendEmailAsync(AppUser user, string token);
}
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace arch.crl
{
/// <summary>
/// Description résumée de crlQuartier
/// </summary>
public class crlQuartier
{
#region variable
private string numQuartier;
private string quartier;
... |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//---------------------------------------------... |
using System.Text;
using static Interop.Libsodium;
namespace Sodium
{
/// <summary>Provides hashing via selected primitive.</summary>
public static class CryptoHash
{
private const int SHA512_BYTES = crypto_hash_sha512_BYTES;
private const int SHA256_BYTES = crypto_hash_sha256_BYTES;
... |
@{
Layout = "/Views/Shared/_Layout.cshtml";
}
@section Styles {
<link rel="stylesheet" href="~/dev_assets/css/site.css" />
@RenderSection("Scripts", required: false)
}
<header>
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
<div ... |
// <auto-generated />
// Built from: hl7.fhir.r4b.core version: 4.1.0
// Option: "NAMESPACE" = "fhirCsR4"
using System;
using System.Collections.Generic;
using System.Text.Json;
using System.Text.Json.Serialization;
using fhirCsR4.Serialization;
namespace fhirCsR4.Models
{
/// <summary>
/// Clinical stage or gr... |
// ******************************************************************
// Copyright (c) William Bradley
// This code is licensed under the MIT License (MIT).
// THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FO... |
namespace MassTransit.Tests.Pipeline
{
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using MassTransit.Configuration;
using NUnit.Framework;
using TestFramework;
using TestFramework.Messages;
[TestFixture]
public class Co... |
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace AccessTokenMvcApiService.Areas.HelpPage.ModelDescriptions
{
public class ParameterDescription
{
public ParameterDescription()
{
Annotations = new Collection<ParameterAnnotation>();
}
p... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DiO_CS_BTConf.Bluetooth
{
public enum BluetoothTypes : uint
{
HC05 = 0,
HC06 = 1,
RN21 = 2
}
} |
// CivOne
//
// To the extent possible under law, the person who associated CC0 with
// CivOne has waived all copyright and related or neighboring rights
// to CivOne.
//
// You should have received a copy of the CC0 legalcode along with this
// work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
us... |
// .NET port of https://github.com/RedisLabs/JRediSearch/
using System.Collections.Generic;
using StackExchange.Redis;
namespace NRediSearch
{
/// <summary>
/// Document represents a single indexed document or entity in the engine
/// </summary>
public class Document
{
public string Id { ... |
@model List<TODOList.Models.Task>
@{
ViewBag.Title = "Home Page";
}
<div class="row">
<div class="col-md-4">
<h3>TODO List</h3>
<ol>
@foreach (var task in Model)
{
<li>@task.Title @Html.ActionLink("[Delete]", "Delete", "Task", htmlAttributes: null, route... |
// ----------------------------------------------------------------------
// <copyright file="IDtoToTableModelService.cs" company="Xavier Solau">
// Copyright © 2021 Xavier Solau.
// Licensed under the MIT license.
// See LICENSE file in the project root for full license information.
// </copyright>
// ---------------... |
using System;
namespace Decorator
{
public abstract class ItemBiblioteca
{
public int NumeroCopias { get; set; }
public abstract void Exibe();
}
} |
//------------------------------------------------------------------------------
// <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>
//---... |
// This is a copy of the 7-zip LZMA
// compression library.
namespace LZMA
{
class CRC
{
public static readonly uint[] Table;
static CRC()
{
Table = new uint[256];
const uint kPoly = 0xEDB88320;
for (uint i = 0; i < 256; i++)
{
uint r = i;
for (int j = 0; j < 8; j++)
if ((r & 1) != 0)... |
using System.Collections.Generic;
using VerteX.Compiling;
namespace VerteX.Lexing
{
/// <summary>
/// Базовая языковая единица.
/// </summary>
public class Token
{
/// <summary>
/// Тип токена.
/// </summary>
public TokenType type;
/// <summary>
///... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
public static class SqlExpand
{
public static void DeleteAllOnSubmit<T>(this System.Data.Objects.ObjectQuery<T> obj, IQueryable<T> query) where T : class
{
foreach(T t in query)
{
... |
//---------------------------------------------------------------------------
// Copyright (c) 2016 Michael G. Brehm
//
// 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 restrictio... |
// Loosely coupled MVC solution structure (https://github.com/raste/LooselyCoupledStructure)
// Copyright (c) 2015 Georgi Kolev.
// Licensed under Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0).
using System.Collections.Generic;
using System.Linq;
using BL.Entities;
using BL.Services.Acc... |
using Voody.UniLeo;
namespace Ingame.Hud
{
public sealed class HudModelProvider : MonoProvider<HudModel> { }
} |
using System.Collections.Generic;
namespace JSONApi.JSON
{
public class ResourceIdentifierList : List<ResourceIdentifier>, IIdentifierData
{
}
} |
// ----------------------------------------------------------------------------------
//
// Copyright Microsoft Corporation
// 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.apa... |
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Entity;
using System.Linq;
using System.Threading.Tasks;
using System.Net;
using System.Web;
using System.Web.Mvc;
using Memberships.Entities;
using Memberships.Models;
using System.Transactions;
namespace Memberships.Areas.Admin.Con... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace Microsoft.Tools.ServiceModel.SvcUtil.XmlSerializer
{
using System;
using System.Collections.Generi... |
namespace Be.Vlaanderen.Basisregisters.CommandHandling.Tests
{
using System;
using System.Linq;
using System.Threading.Tasks;
using Shouldly;
using Xunit;
public class CommandHandlerModuleTests
{
[Fact]
public void When_add_duplicate_command_then_should_throw()
{
... |
/// ©2022 Kevin Foley.
/// See accompanying license file.
using OneManEscapePlan.Common.Scripts.DataStructures;
using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;
using UnityEngine.Assertions;
using UnityEngine.Events;
namespace OneManEscapePlan.Common.Scripts.Editor {... |
/*
* Copyright 2020 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 "licens... |
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.CompilerServices;
using Macad.Core.Exchange.Svg;
using Macad.Core.Shapes;
using Macad.Common;
using Macad.Common.Serialization;
using Macad.Occt;
namespace Macad.Core.Exchange
{
public sealed class SvgExchanger : ISketchExporter... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
using TarkovLens.Enums;
using TarkovLens.Models.Items;
namespace TarkovLens.Documents.Items
{
public class Backpack : BaseItem
{
[JsonPropertyName("grids")]
pu... |
using FluentValidation;
namespace SFA.DAS.CommitmentsV2.Application.Queries.GetDraftApprenticeshipCreatedEventsForCohort
{
public class GetDraftApprenticeshipCreatedEventsForCohortQueryValidator : AbstractValidator<GetDraftApprenticeshipCreatedEventsForCohortQuery>
{
public GetDraftApprenticeshipCrea... |
using O2DESNet.Standard;
using System;
using System.Collections.Generic;
namespace O2DESNet.RCQueues
{
public interface IActivity
{
string Id { get; }
string Name { get; }
IReadOnlyList<IRequirement> Requirements { get; }
/// <summary>
/// Inclusive minimum and maxsimum... |
// <Snippet1>
using System;
using System.Diagnostics;
using System.Threading;
class MySample{
public static void Main(){
// Create the source, if it does not already exist.
if(!EventLog.SourceExists("MySource"))
{
//An event log source should not be created ... |
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using KoharuYomiageApp.Domain.Account;
using KoharuYomiageApp.Domain.Account.Mastodon;
namespace KoharuYomiageApp.UseCase.Repository
{
public interface IMastodonAccountRepository
{
Task<MastodonAccount?> FindMastod... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using System.Net.Sockets;
using System.IO;
namespace Cliente
{
class Cliente_Chat
{
}
} |
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Text.RegularExpressions;
using SharedTrip.Data;
using SharedTrip.Services.Contacts;
using SharedTrip.ViewModels.Trips;
using SharedTrip.ViewModels.Users;
namespace SharedTrip.Services
{
using static DataConstants;
public ... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#nullable disable
using Application.Quizzes.Commands.UpdateQuizzesAuthor;
using Infrastructure.Identity;
using MediatR;
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCo... |
using System;
using System.Collections.Generic;
using Sproto;
using Unity.Entities;
using Unity.Mathematics;
using Unity.Transforms;
using UnityEngine;
using UnityMMO.Component;
using static Protocol;
namespace UnityMMO {
public class SynchFromNet {
private static SynchFromNet instance = null;
Dictionary<Scene... |
using System.Collections.Generic;
using System.Globalization;
using Mono.Cecil.Cil;
using Xamarin.Forms.Xaml;
using Xamarin.Forms.Build.Tasks;
using static Mono.Cecil.Cil.Instruction;
using static Mono.Cecil.Cil.OpCodes;
namespace Xamarin.Forms.Core.XamlC
{
class ConstraintTypeConverter : ICompiledTypeConverter
{... |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
namespac... |
//GENERATED: CS Code
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace UnrealEngine{
public partial class UInputKeyDelegateBinding:UInputDelegateBinding
{
[MethodImplAttribute(MethodImplOptions.InternalCall)]
public static extern new IntPtr StaticClass();
}
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.