text stringlengths 1 932k |
|---|
using System;
using System.Text;
using System.IO;
using NPOI.Util;
namespace NPOI.HSSF.Util
{
public class GUID {
/*
* this class is currently only used here, but could be moved to a
* common package if needed
*/
private const int TEXT_FORMAT_LENGTH = 36;
public... |
using UnityEngine;
using FairyGUI;
public class FilterMain : MonoBehaviour
{
GComponent _mainView;
GSlider _s0;
GSlider _s1;
GSlider _s2;
GSlider _s3;
GSlider _s4;
void Awake()
{
Application.targetFrameRate = 60;
Stage.inst.onKeyDown.Add(OnKeyDown);
UIPackage.AddPackage("UI/Filter");
}
void Start()... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Newtonsoft.Json.Tests.TestObjects
{
using System.Runtime.Serialization;
public class HolderClass
{
public HolderClass() { }
[DataMember] // (TypeNameHandling = Newtonsoft.Json.TypeNameHandling.All)
... |
namespace BlazorHero.CleanArchitecture.Application.Requests.Catalog
{
public class GetAllPagedProductsRequest : PagedRequest
{
public string SearchString { get; set; }
}
} |
using System.Text.Json.Serialization;
namespace Essensoft.Paylink.Alipay.Domain
{
/// <summary>
/// Option Data Structure.
/// </summary>
public class Option : AlipayObject
{
/// <summary>
/// 文本,通常用于理解对应的取值
/// </summary>
[JsonPropertyName("text")]
public s... |
using System;
using UltimaOnline.Targeting;
using UltimaOnline.Items;
using UltimaOnline.Network;
using UltimaOnline.Mobiles;
namespace UltimaOnline.SkillHandlers
{
public class TasteID
{
public static void Initialize()
{
SkillInfo.Table[(int)SkillName.TasteID].Callback = new SkillU... |
@model EA.Iws.Web.Areas.NotificationApplication.ViewModels.WasteCodes.EnterWasteCodesViewModel
<div class="wastecode-block">
<div class="form-group-compound @Html.Gds().FormGroupClass(m => m.SelectedCode)">
@Html.Gds().LabelFor(m => m.SelectedCode, false)
@Html.Gds().ValidationMessageFor(m =>... |
/*
* 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... |
// Project: Daggerfall Tools For Unity
// Copyright: Copyright (C) 2009-2019 Daggerfall Workshop
// Web Site: http://www.dfworkshop.net
// License: MIT License (http://www.opensource.org/licenses/mit-license.php)
// Source Code: https://github.com/Interkarma/daggerfall-unity
// Original... |
using FluentValidation;
namespace CompleteApp.Business.Models.Validations.Enderecos
{
public class EnderecoValidation : AbstractValidator<Endereco>
{
public EnderecoValidation()
{
RuleFor(c => c.Logradouro)
.NotEmpty().WithMessage("O campo {PropertyName} precisa ser... |
// *** 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... |
namespace IntraSoft.Services.Data
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using IntraSoft.Data;
using IntraSoft.Data.Common.Repositories;
using IntraSoft.Data.Models;
using IntraSoft.Services.Mapping;
using Microsoft.EntityFr... |
namespace System.Dynamic
{
/// <summary>
/// Represents a runtime type parameter to use to
/// make a generic method invocation.
/// </summary>
partial class TypeParameter
{
/// <summary>
/// Initializes a new instance of the <see cref="TypeParameter"/> class.
/// </summary>
public TypeParameter(Type t... |
namespace ServiceLocatorPatternOrAntiPattern
{
public interface ILogAdaptor
{
void LogInfo(string message);
}
} |
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NMF.Expressions;
using NMF.Models.Meta;
using Type = System.Type;
namespace NMF.Models.Dynamic
{
internal class AttributeProperty : Cell<object>, IAttributeProperty
{
private readonly ... |
// *** 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... |
@model BookFormModel
<form method="post">
<div class="form-group">
<label asp-for="Title"></label>
<input asp-for="Title" class="form-control" placeholder="Enter title">
<span asp-validation-for="Title" class="small text-danger"></span>
</div>
<div class="form-group">
<labe... |
using Blog.Core.Common;
using Blog.Core.Common.DB;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.IO;
namespace Blog.Core.Model.Models
{
public class MyContext
{
private static MutiDBOperate connectObject => GetMainConnectionDb();
private static string _connectio... |
/*
* 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.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Dapper.Transaction")]
[assembly: AssemblyDescription("IDbTransaction extension methods for Dapper: A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc..")]
[assembly: AssemblyConfiguration("")]
... |
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;
// Added
using System.Threading.Tasks;
using System.IO;
namespace Listing9_4
{
public partial class MainForm : Form
{
... |
/*
* MIT License
*
* Copyright (c) 2018 Clark Yang
*
* 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, m... |
using System;
using System.ComponentModel.DataAnnotations;
namespace PizzaWorld.Domain.Abstracts
{
public abstract class AEntity
{
[Key]
public long EntityID { get; set; }
protected AEntity()
{
//EntityID = DateTime.Now.Ticks;
}
}
} |
using System;
namespace UELib.JsonDecompiler
{
public static class UDecompilingState
{
[System.Diagnostics.CodeAnalysis.SuppressMessage( "Microsoft.Usage", "CA2211:NonConstantFieldsShouldNotBeVisible" )]
public static string Tabs = String.Empty;
public static void AddTabs( int count )
... |
// Copyright (c) Microsoft. All rights reserved.
using System.Reflection;
using Autofac;
using Autofac.Extensions.DependencyInjection;
using Microsoft.Azure.IoTSolutions.DeviceSimulation.Services;
using Microsoft.Azure.IoTSolutions.DeviceSimulation.Services.Diagnostics;
using Microsoft.Azure.IoTSolutions.DeviceSimulat... |
//------------------------------------------------------------------------------
// <auto-generated>
// 이 코드는 도구를 사용하여 생성되었습니다.
// 런타임 버전:4.0.30319.18408
//
// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
// 이러한 변경 내용이 손실됩니다.
// </auto-generated>
//--------------------------------------------------------... |
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
namespace LiteUI.Test
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
... |
// <auto-generated />
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using NRZMyk.Services.Data;
namespace ... |
using FluentAssertions;
using SmartAnnotations.Attributes.MaxLength;
using SmartAnnotations.Attributes.Validation;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
namespace SmartAnnotations.UnitTests.Attributes.MaxLength
{
public cla... |
#region MIT License
/*Copyright (c) 2012-2013 Robert Rouhani <robert.rouhani@gmail.com>
SharpFont based on Tao.FreeType, Copyright (c) 2003-2007 Tao Framework Team
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to dea... |
// ------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
// ------------------------------------------------------------
namespace Serilog {
usin... |
using LagoVista.Core.Interfaces;
using LagoVista.Core.Managers;
using LagoVista.Core.Models;
using LagoVista.Core.Validation;
using LagoVista.IoT.Logging.Loggers;
using LagoVista.UserAdmin.Interfaces.Managers;
using LagoVista.UserAdmin.Models.Users;
using LagoVista.UserAdmin.Resources;
using Microsoft.AspNetCore.Ident... |
using System;
using System.Collections.Generic;
using System.ComponentModel.Design;
using System.Diagnostics.Contracts;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Runtime.Versioning;
using System.Text;
using System.Text.RegularExpressions;
using System.Xml;
using Ionic.Zip;
using NuGet... |
namespace Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20210210
{
using Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.PowerShell;
/// <summary>Replication provider specific recovery point details.</summary>
[System.ComponentModel.TypeConverter(typeof(ProviderSpecificRecoveryPointDetailsTypeCon... |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// 有关程序集的一般信息由以下
// 控制。更改这些特性值可修改
// 与程序集关联的信息。
[assembly: AssemblyTitle("SAEA.Common.DNF")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembl... |
using System;
using Xunit;
namespace NStandard.Test
{
public class StringExTests
{
public class Simple
{
public int A { get; set; }
public string B { get; set; }
public string C { get; set; }
public string D;
}
[Fact]
pub... |
/*
Sharp86 - 8086 Emulator
Copyright (C) 2017-2018 Topten Software.
Sharp86 is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Sharp86 is dis... |
namespace WarCroft.Entities.Inventory.Bags
{
public class Backpack : Bag
{
private const int capacityDefault = 100;
public Backpack()
: base(capacityDefault)
{
}
}
} |
using UnityEngine;
using UnityEngine.Events;
using UnityEngine.EventSystems;
using UnityEngine.UI.Tweens;
using System.Collections;
namespace UnityEngine.UI
{
[ExecuteInEditMode, AddComponentMenu("UI/Input Field - Layout Extension", 96)]
public class UIInputFieldLayoutExtension : MonoBehaviour, IEventSystemHandler,... |
using System.Threading.Tasks;
using DotnetSpider.Extensions;
using DotnetSpider.Statistics.Message;
using SwiftMQ;
namespace DotnetSpider.Statistics
{
public class StatisticsClient : IStatisticsClient
{
private readonly IMessageQueue _messageQueue;
public StatisticsClient(IMessageQueue messageQueue)
{
_mes... |
namespace YAMP
{
using System;
/// <summary>
/// Provides a description attribute to be read by the help method.
/// </summary>
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class)]
public class DescriptionAttribute : Attribute
{
#region ctor
/// <summary>
... |
using System;
using System.Collections.Generic;
using Server;
using Server.Commands;
using Server.Gumps;
using Server.Mobiles;
using Server.Network;
using Server.Spells;
namespace Server.Items
{
public class PublicMoongate : Item
{
public override bool ForceShowProperties{ get{ return ObjectPropertyList.Enabled; }... |
// *****************************************************************************
//
// © Component Factory Pty Ltd 2012. All rights reserved.
// The software and associated documentation supplied hereunder are the
// proprietary information of Component Factory Pty Ltd, PO Box 1504,
// Glen Waverley, Vic 3150, A... |
/* Copyright 2009 HPDI, 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to i... |
//------------------------------------------------------------------------------
// <auto-generated>
// Este código fue generado por una herramienta.
// Versión de runtime:4.0.30319.42000
//
// Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
// se vuelve a genera... |
using System.IO;
namespace Carbon.Css
{
public interface IStylesheet
{
void WriteTo(TextWriter writer);
}
} |
namespace Azure.ResourceManager.KeyVault
{
public static partial class ArmClientExtensions
{
public static Azure.ResourceManager.KeyVault.DeletedManagedHsm GetDeletedManagedHsm(this Azure.ResourceManager.ArmClient armClient, Azure.Core.ResourceIdentifier id) { throw null; }
public static Azure.R... |
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("Ca... |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// La información general sobre un ensamblado se controla mediante el siguiente
// conjunto de atributos. Cambie estos atributos para modificar la información
// asociada con un ensamblado.
[assembly: AssemblyTitle(... |
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using ApiPeek.Core.Extensions;
namespace ApiPeek.Core.Model
{
[DataContract]
public class ApiEnum : ApiBaseItem, IApiType
{
[DataMember]
public bool IsFlags { get; set; }
[DataMember]
public string Bas... |
using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Text;
namespace PharmacyNetwork.ApplicationCore.Helpers.Query
{
public class IncludeVisitor : ExpressionVisitor
{
public string Path { get; private set; } = string.Empty;
protected override Expression ... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VenteBouquin_DTO.class_dto
{
public interface IGestionCommande
{
CommandeDTO GetCommandeDTO(int codeCommande);
List<CommandeDTO> GetListCommandeDTO(int codePayeur);
... |
namespace Sandbox.Tools
{
[Library( "tool_weld2", Title = "Weld (Bad)", Description = "Weld stuff and ragdolls together\nWill break!", Group = "construction" )]
public partial class WeldTool2 : BaseTool
{
private Prop target;
private int targetBone;
public override void Simulate()
{
if ( !Host.IsServer ... |
/*
* 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
*
... |
//-------------------------------------------------------------------------------
// <copyright file="Context.cs" company="Ninject Project Contributors">
// Copyright (c) 2009-2014 Ninject Project Contributors
//
// Dual-licensed under the Apache License, Version 2.0, and the Microsoft Public License (Ms-PL).
// ... |
//------------------------------------------------------------------------------
// <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>
//-----------------------------------------... |
// Copyright © 2015-2021 Serhii Voznyi and open source community
//
// https://www.linkedin.com/in/serhii-voznyi/
//
// 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
//
// ht... |
#pragma checksum "TestFiles/IntegrationTests/CodeGenerationIntegrationTest/SingleTagHelper.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "8cdee08b4e2681f8524ae09a405f163fd96d1ed8"
// <auto-generated/>
#pragma warning disable 1591
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof... |
// Copyright (c) 2014 AlphaSierraPapa for the SharpDevelop Team
//
// 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, co... |
using PowArgs.Attributes;
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Text;
namespace PowArgs.Models
{
sealed class PropArg
{
public PropertyInfo Property { get; private set; }
public ArgumentAttribute Argument { get; private set; }
public Pro... |
@model SERVERAPI.ViewModels.DownLoadViewModel
@{
Layout = "_LayoutBare";
}
@{
var i = 0;
}
<div id="target">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h2 class="modal-title" id="myModalLabel">Downloading a File<... |
namespace PlayersAndMonsters
{
public class Knight : Hero
{
public Knight(string username, int level) : base(username, level)
{
}
}
} |
#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;
using System.Web;
namespace Kooboo.CMS.Form.Html.Controls
{
public class InputI... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
namespace CopyTileApp
{
class Program
{
static void Main(string[] args)
{
string srcDir = @"D:\MapData\TilesCache";
... |
using CssUI.Internal;
namespace CssUI.HTML
{
[MetaEnum]
public enum EContentEditable : short
{/* Docs: https://html.spec.whatwg.org/multipage/interaction.html#attr-contenteditable */
Invalid = -1,
Missing = 0,
[MetaKeyword("true")]
True,
[MetaKeyword("false")]
... |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
namespace Microsoft.Azure.Management.Sql.Fluent
{
using Microsoft.Azure.Management.ResourceManager.Fluent.Core;
using Models;
using System;
/// <s... |
using System;
using System.ComponentModel.DataAnnotations;
namespace Altairis.ShirtShop.Data {
public class Order {
[Key]
public int Id { get; set; }
public DateTime DateCreated { get; set; } = DateTime.Now;
public DateTime? DatePaid { get; set; }
public DateTime? DateSe... |
namespace MassTransit.Azure.ServiceBus.Core.Transport
{
using System;
using System.Threading.Tasks;
using Context;
using Contexts;
using GreenPipes;
using Logging;
using MassTransit.Pipeline;
using Microsoft.Azure.ServiceBus;
using Transports;
/// <summary>
/// Receives a ... |
using System;
using System.Collections.Generic;
using System.Text;
using SharpData.Schema;
namespace SharpData.Databases.PostgreSql {
public class PostgreSqlTableDialect {
public static string SequencePrefix = "SEQ_";
public static string PrimaryKeyPrefix = "PK_";
public string[] GetCreate... |
//Copy from github.com/DrInfy/sharpy-starter-bot
//Under MIT License
using System.Linq;
using SC2APIProtocol;
namespace NiziSC2Bot1
{
/* This class is used to load the CommandLine arguments for the bot.
*/
public class CLArgs
{
public CLArgs(string[] args)
{
for (var i = ... |
using System;
using System.Collections.Generic;
using System.Linq;
using TreesLab.WBTrees;
namespace OnlineTest.WBTrees.AOJ
{
// Test: https://onlinejudge.u-aizu.ac.jp/courses/lesson/8/ITP2/1/ITP2_1_C
class List_ITP2_1_C
{
static int[] Read() => Array.ConvertAll(Console.ReadLine().Split(), int.Parse);
static vo... |
<div class="container">
<div class="row">
<div class="text-center col-md-12 col-12">
@Html.Partial("_RxSearchBox")
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12 col-12">
<h1>About</h1>
<div class="spaced">
... |
using System;
namespace WikimediaData.Entities
{
public class LanguageDomain
{
public DateTime Period { get; set; }
public string LanguageCode { get; set; }
public string Domain { get; set; }
public uint ViewCount { get; set; }
public override string ToString()
... |
//------------------------------------------------------------------------------
// <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>
//---... |
//------------------------------------------------------------------------------
// <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>
//--... |
using System;
using System.Collections.Generic;
using System.Linq;
using OsuParsers.Beatmaps.Objects.Catch;
using OsuParsers.Enums.Beatmaps;
#if UNITY_EDITOR
using UnityEditor;
#endif
using UnityEngine;
using Object = UnityEngine.Object;
using PSlider = OsuParsers.Beatmaps.Objects.Slider;
public static class HitObjec... |
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Microsoft.AspNet.Identity;
using Microsoft.Owin.Security;
namespace cs_webapp_publish.Models
{
public class IndexViewModel
{
public bool HasPassword { get; set; }
public IList<UserLoginInfo> Logins { get; set;... |
// Copyright 2017 the original author or authors.
//
// 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 la... |
namespace Inviter.Server.Models;
public enum InviteStatus
{
Pending,
Accepted,
Rejected,
Ignored,
Expired
} |
using CosmosDbRepository;
using FluentAssertions;
using Microsoft.Azure.Documents;
using Microsoft.Azure.Documents.Client;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
using System;
using System.Threading.Tasks;
using Index = Microsoft.Azure.Documents.Index;
namespace CosmosDbFormattingError
{
clas... |
using ExampleShared;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using NuklearDotNet;
using Nuklear;
namespace Example_MonoGame
{
public class Game1 : Game
{
private GraphicsDeviceManager _graphics;
private SpriteBatch _spriteBatc... |
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Options;
using SFA.DAS.EmployerIncentives.Abstractions.Commands;
using SFA.DAS.EmployerIncentives.Commands.Persistence;
using SFA.DAS.EmployerIncentives.Infrastructure.Configuration;
namespace SFA.DAS.EmployerIncentives.Commands.SignLega... |
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text.RegularExpressions;
namespace RobustArithmetic.Test.Util
{
/// <summary>
/// A class to allow the conversion of doubles to string representations of
/// their exact decimal values. The implemen... |
using Microsoft.SharePoint.Client.DocumentSet;
using Microsoft.SharePoint.Client.Taxonomy;
using PnP.Framework;
using PnP.Framework.Diagnostics;
using PnP.Framework.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Xml.Linq;
namespace Microsoft.Sh... |
#if USE_UNI_LUA
using LuaAPI = UniLua.Lua;
using RealStatePtr = UniLua.ILuaState;
using LuaCSFunction = UniLua.CSharpFunctionDelegate;
#else
using LuaAPI = XLua.LuaDLL.Lua;
using RealStatePtr = System.IntPtr;
using LuaCSFunction = XLua.LuaDLL.lua_CSFunction;
#endif
using XLua;
using System.Collections.Generic;
name... |
// This source code was generated by ClangCaster
using System;
using System.Runtime.InteropServices;
namespace NWindowsKits
{
// C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/um/d3d11.h:2405
public class ID3D11Buffer : ID3D11Resource
{
static Guid s_uuid = new Guid("48570b85-d1ee-4fcd... |
using System;
using System.Web;
using EPiServer.Cms.UI.AspNetIdentity;
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.Owin;
using Microsoft.Owin;
using Microsoft.Owin.Security.Cookies;
using Owin;
[assembly: OwinStartup(typeof(EpiCategories.SandboxApp.Startup))]
namespace EpiCategories.SandboxApp
{
... |
<pre style="font-size:16px">
Address : Road #16, Polloby, Mirpur
TelePhone : +88-8033255 &
Other : +88-9014693
Mobile : +88-01552388276
E-mail : rupnagarmodelsc@yahoo.com
</pre> |
using BlazorHero.CleanArchitecture.Application.Responses.Identity;
using BlazorHero.CleanArchitecture.Client.Extensions;
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.SignalR.Client;
using MudBlazor;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
n... |
//
// Auth0 Fine Grained Authorization (FGA)/.NET SDK for Auth0 Fine Grained Authorization (FGA)
//
// API version: 0.1
// Website: https://fga.dev
// Documentation: https://docs.fga.dev
// Support: https://discord.gg/8naAwJfWN6
// License: [MIT](https://github.com/auth0-lab/fga-dotnet-sdk/blob/main/LICENSE)
//
// NOTE... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace OAHub.Storage.Models.ViewModels.Token
{
public class AddModel
{
public string Title { get; set; }
public string Description { get; set; }
}
} |
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Abp.Authorization.Roles;
using FargateDemo.Authorization.Roles;
namespace FargateDemo.Roles.Dto
{
public class CreateRoleDto
{
[Required]
[StringLength(AbpRoleBase.MaxNameLength)]
public string Name { g... |
namespace PhotoContest.App.Models.Contest
{
using System;
using System.Collections.Generic;
using System.Linq;
using AutoMapper;
using AutoMapper.QueryableExtensions;
using Bookmarks.Common.Mappings;
using PhotoContest.Common;
using PhotoContest.Models;
using PhotoContest.Models.E... |
/*
* 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 System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace RCNETAPI
{
public class WebApiApplication : System.Web.HttpApplication
{
protected void Application_Start... |
using System;
using System.Threading.Tasks;
using MMALSharp.Common.Handlers;
using MMALSharp.Native;
using MMALSharp.Ports;
using System.Text;
using MMALSharp.Callbacks;
namespace MMALSharp.Components
{
public class MMALImageFileEncoder : MMALImageEncoder, IMMALConvert
{
public unsafe MMALImageFileEnc... |
// Copyright 2017 Google Inc. 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
//
// Unless required by applica... |
// ----------------------------------------------------------------------------------
//
// 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.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Data;
namespace WordExporter.UI.Support
{
public class BooleanToCollapsedConverter : IValueConverter
{
public objec... |
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using k8s.Models;
using k8s.Tests.Mock;
using Microsoft.AspNetCore.Http;
using Nito.AsyncEx;
using Xunit;
using Xunit.Abst... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.