text stringlengths 1 932k |
|---|
using System;
using System.Drawing;
using System.Windows.Forms;
using Newtonsoft.Json;
using RapeEngine.Maker;
namespace RapeEngine.Maker.Actions {
/// <summary>
/// Play SE action.
/// </summary>
public sealed class AudioPlaySE: BaseScriptAction {
/// <summary>
/// Node title string format.
/// </summary... |
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Stripe
{
public class StripeInvoiceLines
{
[JsonProperty("data")]
public List<StripeInvoiceItem> StripeInvoiceItems { get; set; }
}
} |
/*
This file is part of the iText (R) project.
Copyright (c) 1998-2021 iText Group NV
Authors: iText Software.
This program is offered under a commercial and under the AGPL license.
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
AGPL licensing:
This program is free... |
namespace RJCP.Core.CommandLine
{
/// <summary>
/// Interface IOptionParser for different flavors of command line parsing.
/// </summary>
internal interface IOptionParser
{
/// <summary>
/// Gets the next token, where the specified token type is expected.
/// </summary>
... |
// The documentation for this class (on <summary> tags) was extracted from:
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array
#if CORE
namespace Bridge.Internal.Html5
#else
namespace Bridge.Html5
#endif
{
/// <summary>
/// Represents an array of twos-complement 32-b... |
/*
* 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... |
#pragma checksum "C:\Users\DELL\source\repos\RazorPagesMovie\Pages\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1b7a1d5bbaad83b95a49174f3ebed568704bd68b"
// <auto-generated/>
#pragma warning disable 1591
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(RazorPagesMovie.P... |
// 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;
using System.Collections.Generic;
using System.Diagnostics.Tracing;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.As... |
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Yarp.ReverseProxy.Forwarder;
using Y... |
/*
* 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.IO;
using System.Text;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using RED.CRC32;
using WolvenKit.CR2W.Types;
using WolvenKit.Common.FNV1A;
namespace WolvenKit.CR2W
{
public class CR2WVerify : IDisposable
{
#region Fields
private const ui... |
// <auto-generated>
// 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
// re... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.AI;
using UnityEngine.UI;
public class Slam : MonoBehaviour, IAbility
{
public Rigidbody RB;
public NavMeshAgent NMAgent;
public LayerMask ClickToMoveLayer;
[SerializeField] private bool Dashing = false;
... |
using System.ComponentModel.DataAnnotations.Schema;
namespace SqlServer.Core.InformationSchema
{
/// <summary>
///
/// </summary>
[Table("COLUMNS", Schema="INFORMATION_SCHEMA")]
public class Column
{
/// <summary>
/// Table qualifier.
/// </summary>
[Column("TABLE_CATALOG")]
... |
using System;
using System.Linq;
namespace SourceEngine.Demo.Parser.BitStreamImpl
{
public class DebugBitStream : IBitStream
{
private readonly IBitStream A, B;
public DebugBitStream(IBitStream a, IBitStream b)
{
this.A = a;
this.B = b;
}
public void Initialize(System.IO.Stream stream)
{
thro... |
using Nest.Resolvers.Converters;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Nest
{
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
public interface IPhraseSuggestHighlight
{
[JsonProperty(PropertyName = "pre_tag")]
string... |
using System.Xml.Linq;
using Gravity.Server.ProcessingNodes.Transform.UrlRewriteRules.Interfaces.Rules;
using Microsoft.Owin;
namespace Gravity.Server.ProcessingNodes.Transform.UrlRewriteRules.Interfaces.Actions
{
internal interface IAction: IRuleElement
{
IAction Initialize(XElement configuration);
... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
using System;
interface IGen<T>
{
T Property
{
get;
set;
}
T this[int i]
{
get;
set;
}
T Method(T t);
T VMethod... |
using System;
namespace ICSharpCode.SharpZipLib.Checksum {
/// <summary>
/// Computes Adler32 checksum for a stream of data. An Adler32
/// checksum is not as reliable as a CRC32 checksum, but a lot faster to
/// compute.
///
/// The specification for Adler32 may be found in RFC 1950.
/// ZLIB Compressed... |
// 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 DotNetNuke.Services.Authentication.OAuth
{
using System;
using System.Collections.Specialized;
... |
// <auto-generated />
using System;
using CasinoReports.Infrastructure.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class EnemySpawner : MonoBehaviour
{
// The enemies will be spawned at random points between the start and end
public Transform spawnerStartPoint;
public Transform spawnerEndPoint;
public GameObject enemyPrefab;
p... |
using System;
using System.Threading.Channels;
using System.Threading.Tasks;
namespace Amphisbaena.Linq {
//-------------------------------------------------------------------------------------------------------------------
//
/// <summary>
/// Channel Reader Extensions
/// </summary>
//
//------------... |
using System.ComponentModel.DataAnnotations.Schema;
namespace EFFeatures.Models.Entities
{
public class House
{
public int HouseId { get; set; }
public string Address { get; set; }
[InverseProperty("LandlordFirstFor")]
public Landlord LandlordFirst { get; set; }
[Invers... |
using Tortuga.Chain.Metadata;
namespace Tortuga.Chain.PostgreSql;
partial class PostgreSqlDataSourceBase
{
/// <summary>
/// Gets a table's row count.
/// </summary>
/// <param name="tableName">Name of the table.</param>
public ILink<long> GetTableApproximateCount(PostgreSqlObjectName tableName)
{
var tabl... |
// dnlib: See LICENSE.txt for more info
using System.Collections.Generic;
using dnlib.Threading;
namespace dnlib.DotNet.Emit {
/// <summary>
/// A CIL opcode
/// </summary>
public sealed class OpCode {
/// <summary>
/// The opcode name
/// </summary>
public readonly string Name;
/// <summary>
/// Th... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using KlaxIO.AssetManager.Serialization;
using KlaxIO.AssetManager.Serialization.TypeConverters;
using Newtonsoft.Json;
namespace KlaxCore.GameFramework.Assets.Serializer
{
public class CEntitySerializ... |
using System.Windows;
namespace Trains.NET.Comet
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
using System.Collections.Specialized;
using TygaSoft.Model;
using TygaSoft.BLL;
using TygaSoft.WebHelper;
using TygaSoft.DBUtility;
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.HttpsPolicy;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
usi... |
// 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 System.Runtime.Serialization.Formatters.Binary
{
// When an ObjectWithMap or an ObjectWithMapTyped is ... |
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace Microsoft.DotNet.Build.Tasks
{
public abstract class VisitProjectDependencies : Task
{
[Req... |
using System;
using System.Data;
using System.Data.SQLite;
namespace Image_Sorter_Project {
public class SorterDatabaseManager : IDisposable {
private SQLiteConnection _database_connection;
private string _database_file_location;
// ReSharper disable once ConvertToAutoProperty
pub... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SuperSocket.SocketBase;
using SuperSocket.ProtoBase;
namespace SuperSocket.QuickStart.TelnetServer_AppSession
{
public class TelnetSession : AppSession<TelnetSession>
{
protected override void OnSessionStarted(... |
using UnityEngine;
[RequireComponent(typeof(HealthManager))]
public class EntityStats : MonoBehaviour {
[Header("Acceleration")]
public float walkSpeed = 2000f;
public float sprintSpeed = 4000f;
public float slideSpeed = 400f;
[Header("Limits")]
public float maxClimbAngle = 35f;
public float maxWalkSpeed = 10... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.CompilerServices;
using Veldrid;
namespace Trowel.Rendering.Resources
{
public class Buffer : IDisposable
{
private readonly GraphicsDevice _device;
private bool _created;
internal DeviceBuffer Ver... |
//-----------------------------------------------------------------------
// <copyright file="TcpIncomingConnection.cs" company="Akka.NET Project">
// Copyright (C) 2009-2019 Lightbend Inc. <http://www.lightbend.com>
// Copyright (C) 2013-2019 .NET Foundation <https://github.com/akkadotnet/akka.net>
// </copyr... |
using System.Collections.Generic;
namespace QuizBowlDiscordScoreTracker.Database
{
public class GuildSetting
{
// This should match the Guild ID
public ulong GuildSettingId { get; set; }
public string ReaderRolePrefix { get; set; }
public string TeamRolePrefix { get; set; }
... |
using System;
using HappyBank.Domain.Model;
using System.Collections.Generic;
namespace HappyBank.Domain.Repository
{
public interface IExtractStatementRepository
{
List<ExtractStatement> FindExtractStatement(Guid accountId, DateTime start, DateTime end);
decimal Balance(Guid accountId);
... |
#region Copyright notice and license
// Copyright 2019 The gRPC 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
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless... |
using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("NamedResolver.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: AssemblyConfigurat... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using GRNSoft.Utility;
namespace GRNSoft
{
public partial class GRNEntryfrm : Form
{
pri... |
namespace UnityEngine.Advertisements.Utilities
{
internal static class Color
{
public const int Transparent = 0;
}
} |
//-----------------------------------------------------------------------
// <copyright file="UnityVersion.cs" company="Sirenix IVS">
// Copyright (c) 2018 Sirenix IVS
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may ob... |
using HeltecHotSpot.Data;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HeltecTextLoggerApp.Models
{
public class LoraLink: Link
{
//uplink
public byte chan { get; set; }
public byte stat { get; set; }
public double lsnr { get; ... |
//------------------------------------------------------------------------------
// <auto-generated>
// このコードはツールによって生成されました。
// ランタイム バージョン:4.0.30319.42000
//
// このファイルへの変更は、以下の状況下で不正な動作の原因になったり、
// コードが再生成されるときに損失したりします。
// </auto-generated>
//---------------------------------------------------------... |
using System;
using System.IO;
using WebConfigTransform.Core;
namespace WebConfigTransform.Con
{
class Program
{
static void Main(string[] args)
{
var config = Path.Combine(Environment.CurrentDirectory, @"TestData\Web.Config");
var transformFile = Path.Combine(Environme... |
using System;
using System.Threading.Tasks;
using com.csutil.model.immutable;
using Xunit;
namespace com.csutil.tests.model.immutable {
public class MoreDataStoreTests {
public MoreDataStoreTests(Xunit.Abstractions.ITestOutputHelper logger) { logger.UseAsLoggingOutput(); }
[Fact]
public ... |
using System;
namespace Smellyriver.TankInspector.Modeling
{
[Serializable]
internal class VirtualShell : VirtualCommodity, IShell
{
public string Name { get; internal set; }
public double Caliber { get; internal set; }
public ShellDamage Damage { get; internal set; }
... |
// Licensed to Elasticsearch B.V under one or more agreements.
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information
using System.Collections.Generic;
using System.Runtime.Serialization;
using Elasticsearch.Net.Utf8Json;
namespace... |
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
using System.Collections.Generic;
using System.Linq;
using ICSharpCode.AvalonEdit.Document;
using ICSharpCode.A... |
// Copyright 2007-2018 Chris Patterson, Dru Sellers, Travis Smith, et. al.
//
// 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
//
// Unles... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Migrations;
namespace webapp.Data.Migrations
{
public partial class CreateIdentitySchema : Migration
{
protected override vo... |
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
namespace Cuture.Http
{
/// <summary>
/// <see cref="IHttpRequest"/> 执行请求相关拓展方法
/// </summary>
public static class IHttpRequestExecutionNewtonsoftJsonExtensions
{
#region 执行请求
#region... |
// <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 AvePoint.Migration.Api.Models
{
using Newtonsoft.Json;
using System.Linq;
public partial class DatabaseSumm... |
using System;
using System.Globalization;
using System.Windows;
namespace UWPHook
{
/// <summary>
/// Interaction logic for SettingsWindow.xaml
/// </summary>
public partial class SettingsWindow : Window
{
public SettingsWindow()
{
InitializeComponent();
th... |
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using osu.Game.Beatmaps;
using osu.Game.Replays.Legacy;
using osu.Game.Rulesets.Mania.Beatmaps;
using osu.Game.Rulesets.Replays;
using o... |
//-----------------------------------------------------------------------
// <copyright company="Nuclei">
// Copyright 2013 Nuclei. Licensed under the Apache License, Version 2.0.
// </copyright>
//-----------------------------------------------------------------------
using System;
using Nuclei.Communication.Pro... |
//-----------------------------------------------------------------------------
// Copyright : (c) Chris Moore, 2020
// License : MIT
//-----------------------------------------------------------------------------
namespace Z0
{
using static Root;
using static core;
public class t_veq : t_inx<t_veq... |
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;
namespace openSPM.Model
{
[Table("PatchUserAccountPlatformBusinessUnitUserAccountView")]
public class PatchUserAccountPlatformBusinessUnitUserAccountView
{
publi... |
using System.Windows.Controls;
namespace ToNote.Views
{
/// <summary>
/// Interaction logic for TodoView.xaml
/// </summary>
public partial class TodoView : UserControl
{
public TodoView()
{
InitializeComponent();
}
}
} |
using System;
using System.Diagnostics.CodeAnalysis;
namespace Alpaca.Markets
{
/// <summary>
/// Encapsulates single trading day information from Alpaca REST API.
/// </summary>
[SuppressMessage("ReSharper", "UnusedMemberInSuper.Global")]
public interface ICalendar
{
/// <summary>
... |
///*
// link: https://practice.geeksforgeeks.org/problems/partition-array-to-k-subsets/1
// video (also possible set will be stored): https://youtu.be/rszwy53vaP0
// note: here in this problem we just have to say is it possible or not ?!
// but still we have included which sets
// sol: https://w... |
using PG.Commons.Xml.Values;
namespace PG.StarWarsGame.Commons.Xml.Tags.Engine.FoC
{
public sealed class WinLoseMessageFontSizeXmlTagDefinition : AXmlTagDefinition
{
private const string KEY_ID = "Win_Lose_Message_Font_Size";
private const XmlValueType PG_TYPE = XmlValueType.IntType5;
p... |
using Newtonsoft.Json;
namespace VCAuthn.Models
{
public class Presentation
{
[JsonProperty("requested_proof")]
public RequestedProof RequestedProof { get; set; }
}
} |
using AutoMapper;
using eLibrary.Model;
using eLibrary.Database;
using eLibrary.Model.Requests.Korisnik;
using eLibrary.Services.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
using Sy... |
using ByteDecoder.RoyalLibrary;
using System;
using System.IO;
using System.Linq;
using System.Text;
using Xunit;
namespace RoyalLibrary.Tests
{
public class StreamReaderExtensionsTests
{
internal string GetCvsData()
{
var sb = new StringBuilder();
sb.AppendLine("\"LatD\", \"LatM\", \"LatS\", ... |
//
// cocos2d.cs: API definition for Cocos2D binding to Mono.
//
// Author:
// Miguel de Icaza
//
// Copyright 2011 Xamarin, Inc.
//
using System;
using System.Drawing;
using MonoTouch.Foundation;
using MonoTouch.ObjCRuntime;
namespace MonoTouch.Cocos2D {
[BaseType (typeof (NSObject))]
interface CCActionManager ... |
// 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 applic... |
// This file is used by Code Analysis to maintain SuppressMessage
// attributes that are applied to this project.
// Project-level suppressions either have no target or are given
// a specific target and scoped to a namespace, type, member, etc.
using System.Diagnostics.CodeAnalysis;
[assembly: SuppressMessage("Styl... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Glass.Mapper.Caching;
using Glass.Mapper.Pipelines.ObjectConstruction;
namespace Glass.Mapper.Sc.Caching
{
public class CacheKeyGenerator : ICacheKeyGenerator
{
public string Gener... |
using System;
namespace EbayLeaveBulkFeedback
{
public class EbayItemSummary
{
public string ItemId { get; set; }
public string TransactionId { get; set; }
public string GalleryImageUrl { get; set; }
public string Title { get; set; }
public decimal Price { get; set; }
public DateTime EndDateTime { get; ... |
@page
@model ConfTool.Server.Pages.ErrorModel
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Error</title>
<link href="~/css/bootstrap/bootstrap.min.css" rel="stylesh... |
using UnityEngine;
using Unity.Jobs;
using Unity.Collections;
using Unity.Burst;
namespace RayTracer.BVH
{
[System.Serializable]
public struct BVHData
{
public Vector3 min;
public Vector3 max;
public int leftIndex;
public int rightIndex;
public int triangleIndex; /... |
using System;
using Network;
using ProtoBuf;
using UnityEngine;
using Pluton.Events;
using System.Reactive;
using System.Reactive.Linq;
using System.Reactive.Subjects;
using System.Reactive.Disposables;
namespace Pluton
{
public class Hooks
{
#region Events
public static Subject<BuildingHurt... |
// --------------------------------------------------------------------------------------------------------------------
// <copyright company="Chocolatey" file="INavigationService.cs">
// Copyright 2014 - Present Rob Reynolds, the maintainers of Chocolatey, and RealDimensions Software, LLC
// </copyright>
// -------... |
/*
* 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 may... |
////////////////////////////////////////////////////////////////////////
//
// This file is part of wic-metadata-conversion, an application that
// demonstrates WIC and GDI+ meta-data support.
//
// Copyright (c) 2019 Nicholas Hayes
//
// This file is licensed under the MIT License.
// See LICENSE for complete licensi... |
using Newtonsoft.Json;
namespace Tolbxela.ApexCharts
{
public class GridLines
{
[JsonProperty("show")]
public bool? Show { get; set; }
}
} |
using System;
using System.ComponentModel;
using EfsTools.Attributes;
using EfsTools.Utils;
using Newtonsoft.Json;
namespace EfsTools.Items.Efs
{
[Serializable]
[EfsFile("/nv/item_files/rfnv/00022198", true, 0xE1FF)]
[Attributes(9)]
public class LteB12TxGainIndexForApt2
{
[ElementsCount(64)... |
using System.Linq;
using System.Threading.Tasks;
using Neocra.Markgen.Domain;
using NSubstitute;
using Scriban;
using Xunit;
using Xunit.Abstractions;
namespace Neocra.Markgen.Tests;
public class ExtraFilesTests : BaseTests
{
private readonly ITestOutputHelper testOutputHelper;
public ExtraFilesTests(ITestOu... |
namespace TwitchLib.Models.PubSub
{
/// <summary>Model representing the previous request.</summary>
public class PreviousRequest
{
/// <summary>Unique communication token.</summary>
public string Nonce { get; protected set; }
/// <summary>PubSub request type.</summary>
publi... |
// *** 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... |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - ResponseFormattingSample</title>
<environment names="Development">
<link rel="stylesheet" href="~/lib/bootstrap/di... |
using System;
namespace ExtendFurther
{
/// <summary>
/// Extensions that help with string to DateTime and similar
/// </summary>
public static class DateTimeExtensions
{
/// <summary>
/// Converts a DateTime to a UTC formatted string
/// </summary>
/// <param name... |
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由动软.Net代码生成器生成。
// 运行库版本:2.5
//
// 请根据项目的实际情况,修改该模板。
// </auto-generated>
//------------------------------------------------------------------------------
namespace WalleProject.Web.t_picture {
... |
// This file was automatically generated and may be regenerated at any
// time. To ensure any changes are retained, modify the tool with any segment/component/group/field name
// or type changes.
namespace Machete.HL7Schema.V26
{
/// <summary>
/// LCC (Segment) - Location Charge Code
/// </summary>
publ... |
namespace NetworkModel.Networking
{
public static class NetworkConstants
{
public static int SERVER_PORT = 25000;
public static string MESSAGE_TERMINATOR = "<<EOF>>";
public static string PARAM_DELIMITER = "<<F>>";
}
} |
#pragma checksum "C:\Users\joao\source\repos\WebApplication3\VAREJISTA\WebPage\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "84677fc820ef28ee8dc3ca9d264734e925687d00"
// <auto-generated/>
#pragma warning disable 1591
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(t... |
// <auto-generated />
using GraphQLWithHotChocolate.Context;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
namespace GraphQLWithHotChocolate.Migrations
{
[DbContext(typeof(DemoContext))]
partial class DemoC... |
@model IEnumerable<MvcMovie.Models.Movie>
@{
Layout = "~/Views/Shared/_layout2.cshtml";
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Index</title>
</head>
<body>
<p>
@Html.ActionLink("Create New", "Create")
@using (Html.BeginForm("Inde... |
using System;
using System.Threading;
//using System.Threading.Tasks;
namespace WixSharp.UI
{
/// <summary>
/// Generic class that represents runtime properties of the typical MSI setup.
/// It is a ViewModel class, which has 'value changed' events for all bindable properties
/// automatically marsha... |
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
namespace System.Data.Entity.Core.Mapping
{
using System.Data.Entity.Core.Metadata.Edm;
using System.Data.Entity.Resources;
using System.Data.Entity.Utilities;
/// <summ... |
// 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.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
[assembly: AssemblyMetadata("Serviceable", "True")]
[assembly: ... |
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Security;
using System.Web.UI.HtmlControls;
using System.Data;
using System.Data.SqlClient;
using System.Collections.Specialized;
using TygaSoft.Model;
using TygaSoft.BLL;
using Tyga... |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using Microsoft.MixedReality.Toolkit.Input;
using Microsoft.MixedReality.Toolkit.Utilities;
using System.Collections;
using System.Collections.Generic;
using UnityEn... |
using Microsoft.AspNetCore.Mvc.ModelBinding.Validation;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace Dx29.Web.Areas.Identity.Pages
{
public class PasswordDigitAttribute ... |
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Tencent is pleased to support the open source community by making behaviac available.
//
// Copyright (C) 2015-2017 THL A29 Limited, a Tencent company. All rights reserved.
//
// Licensed under the BSD 3... |
using System.Security.AccessControl;
using SystemInterface.Security.AccessControl;
namespace SystemWrapper.Security.AccessControl
{
/// <summary>
/// Wrapper for <see cref="T:System.Security.AccessControl.FileSecurity"/> class.
/// </summary>
public class FileSecurityWrap : IFileSecurity
{
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.