text stringlengths 1 932k |
|---|
using System;
using System.Collections.Generic;
using Unity.Collections;
namespace UnityEngine.XR.ARSubsystems
{
/// <summary>
/// Provides access to a device's camera.
/// </summary>
/// <remarks>
/// The <c>XRCameraSubsystem</c> links a Unity <c>Camera</c> to a device camera for video overlay (pa... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Runtime.InteropServices;
using System.Runtime.CompilerServices;
using System.Text;
using Silk.NET.Core;
using Silk.NET.Core.Native;
using Silk.NET.Core.At... |
using System.Collections.Generic;
using MediatR;
using ApiApp.Application.Employees.Models;
namespace ApiApp.Application.Employees.Queries
{
public class EmployeesWithManagersQuery : IRequest<IEnumerable<EmployeeManagerModel>>
{
}
} |
using System.Windows.Controls;
namespace Test.WPF.Views;
/// <summary>
/// Interaction logic for ObservableSortedSetView.xaml
/// </summary>
public partial class ObservableSortedSetView : Page
{
public ObservableSortedSetView()
{
InitializeComponent();
}
} |
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;
using UnityEngine.UI.Extensions;
namespace UnityEditor.UI
{
/// <summary>
/// This script adds the Extensions UI menu options to the Unity Editor.
/// </summary>
static internal class ExtensionMenuOptions
{
#region Unity Builder section ... |
namespace BeDbg.Debugger;
public class InstructionModel
{
public string Text { get; set; } = string.Empty;
public ulong Ip { get; set; }
} |
using System;
public class InvertBinaryTree {
// O(n) time where n is the number of nodes
// O(d) space where d is the height of the tree. There comes a time when
// all of the leaf nodes are in the queue, with all of the nodes
public static void InvertTree(BinaryTree tree) {
// standard loc for a binary tree
... |
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("Are... |
using System.Linq;
using Microsoft.Azure.Documents.Linq;
namespace Cosmonaut.Unit
{
public interface IFakeDocumentQuery<T> : IDocumentQuery<T>, IOrderedQueryable<T>
{
}
} |
using kevincastejon;
using System;
using System.Collections.Generic;
using System.Net;
using UnityEngine;
using UnityEngine.Events;
using Event = kevincastejon.Event;
using _UDPManager = kevincastejon.UDPManager;
namespace kevincastejon.unity
{
[Serializable]
public class UUDPManagerEvent : UnityEvent<UDPMana... |
using API;
using PxStat.Security;
using PxStat.Template;
namespace PxStat.System.Navigation
{
/// <summary>
/// Create a Subject
/// </summary>
internal class Subject_BSO_Create : BaseTemplate_Create<Subject_DTO, Subject_VLD_Create>
{
/// <summary>
/// Constructor
/// </sum... |
using System;
using System.Windows;
using Ccr.PresentationCore.Helpers.DependencyHelpers;
namespace UST.Spatial.GeoJSON
{
public static class ZipSpatialInfo
{
private static readonly Type _type = typeof(ZipSpatialInfo);
public static readonly DependencyProperty ZipCodeProperty = DP.Attach(
_type, ... |
// -----------------------------------------------------------------------
// <copyright file="AssemblyInfo.cs" company="ModelRelief">
// MIT License (https://github.com/steveknipmeyer/ModelRelief/blob/main/MIT-LICENSE.txt)
// </copyright>
// -----------------------------------------------------------------------
usi... |
// <auto-generated>
// Auto-generated by StoneAPI, do not modify.
// </auto-generated>
namespace Dropbox.Api.Account
{
using sys = System;
using col = System.Collections.Generic;
using re = System.Text.RegularExpressions;
using enc = Dropbox.Api.Stone;
/// <summary>
/// <para>The set profile ... |
@page
@model IndexModel
@{
ViewData["Title"] = "Home page";
Layout = null;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="... |
using System.Collections.Generic;
using UnityComponentUI.Engine.Render;
namespace UnityComponentUI.Engine.Components
{
public interface IBaseUIComponent
{
(List<Element> children, GameObjectElementBuilder builder) Render(Element container, PropCollection props, List<Element> children);
string ... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using E = mko.Euklid;
using Mag = mko.Newton.OrderOfMagnitude;
namespace mko.Newton
{
public class VelocityInKilometerPerHour : Velocity
{
protected override void CreateVector(int Dimension)
{
_s... |
// <copyright file="SyntaxTemplates.cs" company="Shkyrockett" >
// Copyright © 2020 - 2021 Shkyrockett. All rights reserved.
// </copyright>
// <author id="shkyrockett">Shkyrockett</author>
// <license>
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
// </l... |
//
// ProgrammingExamples.Build.cs
// ProgrammingExamples
//
// Created by Semih Onay on 20.01.2016.
// Copyright © 2016 Semih Onay. All rights reserved.
//
using UnrealBuildTool;
public class ProgrammingExamples : ModuleRules
{
public ProgrammingExamples(TargetInfo Target)
{
PublicDependencyModuleNames.AddRa... |
namespace Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901
{
using static Microsoft.Azure.PowerShell.Cmdlets.Aks.Runtime.Extensions;
public partial class AgentPoolUpgradeProfilePropertiesUpgradesItem :
Microsoft.Azure.PowerShell.Cmdlets.Aks.Models.Api20200901.IAgentPoolUpgradeProfileProperties... |
/*
* ====================================================================
* 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 license... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class StateMachine
{
IState currentState;
public void ChangeState(IState newState)
{
if (currentState != null)
currentState.Exit();
currentState = newState;
currentState.Enter();
... |
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Data;
namespace logviewer.core
{
public class OffsetConverter : IValueConverter, IMultiValueConverter
{
public object Convert(object valu... |
//
// I18N.CJK.CP950
//
// Author:
// Alan Tam Siu Lung (Tam@SiuLung.com)
// Atsushi Enomoto <atsushi@ximian.com>
//
using System;
namespace Portable.Text {
class CP950 : DbcsEncoding
{
// Magic number used by Windows for the Big5 code page.
const int BIG5_CODE_PAGE = 950;
// Constructor.
public CP950... |
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
namespace Microsoft.Practices.EnterpriseLibrary.Logging.Tests.TestSupport
{
public static class AssertEx
{
public ... |
namespace LH.TestObjects.Tests.Compare.ValueComparators
{
using System;
using System.Linq;
using FluentAssertions;
using NUnit.Framework;
[TestFixture]
public class WhenComparingTimeSpan
{
[Test]
public void ThenShouldPassIfTimeSpansAreEqual()
{
var comp... |
namespace Models
{
/// <summary>
/// Restaurant contiains the location, array of ratings submitted by user, and the reviews
/// </summary>
public class Restaurants
{
public Restaurants() { }
public Restaurants(int id, string name, string location, int zipCode)
{
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NetCore
{
[Flags]
public enum Direction : byte
{
None = 0,
ClientToServer,
ServerToClient
}
[Flags]
public enum OpCode : ushort
{
No... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Core.Parameters
{
public enum StringParameterType
{
Unspecified,
Singleline,
Multiline
}
} |
#region Copyright
/*Copyright (C) 2015 Wosad 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
Unless required by applicable law or a... |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - DonutsWebApp.Web</title>
<environment include="Development">
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" />
... |
using System;
using System.Collections.Generic;
using Interop.UIAutomationCore;
using UIAutomationClient;
using IRawElementProviderSimple = Interop.UIAutomationCore.IRawElementProviderSimple;
namespace ManagedUiaCustomizationCore
{
public static class UiaTypesHelper
{
public const string RetParamUnspea... |
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("Ne... |
using System;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
public class SelectDirectionForAbilityPopup : MonoBehaviour, ISubscriber
{
private readonly IDictionary<KeyCode, GoalDirection> _keypadDirections = new Dictionary<KeyCode, GoalDirection>
{
{ KeyCode.Keyp... |
using AbpVnext.Learn.Entitys;
using Refit;
using System;
using System.Collections.Generic;
using System.Security.Claims;
using System.Text;
using System.Threading.Tasks;
namespace AbpVnext.Learn.IHttpClient
{
/// <summary>
/// 内部接口,用于调用内部的api服务
/// </summary>
public interface IInnerApi
{
/... |
namespace Riganti.Utils.Infrastructure.Azure.TableStorage
{
public interface IStorageOptions
{
string StorageConnectionString { get; }
StorageContextOptions ContextOptions { get; }
}
} |
namespace Eocron.Core.Ast.GroupQuantifiers
{
public sealed class LookAheadQuantifier : QuantifierBase
{
public const string LookAhead = @"(?=";
public const string NegativeLookAhead = @"(?!";
public const string LookBehind = @"(?<=";
public const string NegativeLookBehind = @"(?... |
/*************************************************************************************
Extended WPF Toolkit
Copyright (C) 2007-2013 Xceed Software Inc.
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
For ... |
using FoxTool.Fox.Types.Values;
namespace FoxTool.Tpp.Classes
{
public class SoundPhysicsParameter : Data
{
// Static properties
public FoxString HitEvent { get; set; }
public FoxString RollStartEvent { get; set; }
public FoxString RollEndEvent { get; set; }
public FoxSt... |
using System.Runtime.Serialization;
namespace LogicMonitor.Api.Data
{
/// <summary>
/// An instance FetchData response
/// </summary>
[DataContract]
public class InstanceFetchDataResponse
{
/// <summary>
/// DeviceDataSourceInstanceId
/// </summary>
[DataMember(Name = "instanceId")]
public string Devic... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Threading.Tasks;
using AlonsoAdmin.Common.RequestEntity;
using AlonsoAdmin.Common.ResponseEntity;
using AlonsoAdmin.Entities;
using AlonsoAdmin.Services.System.Interface;
using AlonsoAdmin.Services.System.Reque... |
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("De... |
using System.Collections.Generic;
using System.Threading.Tasks;
using AspnetRunBasics.Models;
using AspnetRunBasics.Services;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace AspnetRunBasics
{
public class OrderModel : PageModel
{
private readonly IOrderService _ord... |
// *****************************************************************************************************************
// Project : NavyBlue
// File : EnsuresExtensions.Compare.Single.cs
// Created : 2019-01-09 20:11
//
// Last Modified By : (jstsmaxx@163.com)
// Last Modified On : 2019-01... |
using System;
using Castle.DynamicProxy;
using Ncqrs.Domain;
using System.Linq;
using System.Collections.Generic;
using System.Reflection;
namespace Ncqrs.Eventing.Sourcing.Snapshotting.DynamicSnapshot
{
public class SnapshotableAggregateRootFactory
{
private readonly SnapshotableImplementerFactory _sn... |
using System.Collections.Generic;
using System.Linq;
using TMPro;
using UnityEngine;
using static GuiDropdown;
using static SolastaModApi.DatabaseHelper;
namespace SolastaCommunityExpansion.Models
{
internal static class InventoryManagementContext
{
private static readonly List<string> SortCategories ... |
using System;
using Bogus;
using Dotnet5.Elasticsearch.Domain.Entities.Cards.Manifestacoes;
namespace Dotnet5.Elasticsearch.Stressor.Services.Fakers.Manifestacoes
{
public static class AssessorDaManifestacaoFaker
{
public static readonly Faker<Assessor> AssessorDaManifestacao = new Faker<Assessor>()
... |
using NLog;
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using EOSNewYork.EOSCore.Response.Table;
using EOSNewYork.EOSCore.Serialization;
using EOSNewYork.EOSCo... |
using System.Collections;
using System.Collections.Generic;
using Random = UnityEngine.Random;
using UnityEngine;
public class chest : MonoBehaviour
{
public GameObject[] items;
public void openChest()
{
//spawn a random items
int randomIndex = Random.Range(0, items.Length);
// cr... |
namespace MassTransit
{
public interface RoutingKeySendContext
{
/// <summary>
/// The routing key for the message (defaults to "")
/// </summary>
string? RoutingKey { get; set; }
}
} |
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
using FDK;
namespace TJAPlayer4
{
public class CPad
{
// プロパティ
internal STHIT st検知したデバイス;
[StructLayout( LayoutKind.Sequential )]
internal struct STHIT
{
public bool Keyboard;
public bool MID... |
// 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;
using System.Collections.Generic;
using NUnit.Framework;
using osu.Framework.MathUtils;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Ty... |
using System;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using System.Data.Common;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration;
using System.Xml;
using System.Xml.Serialization;
using SubSonic;
using SubSonic.Utilities;... |
#pragma checksum "C:\Users\46735197879\Desktop\PontoDigital_final\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "329043e1ec3d098ca31279074141f66c22083038"
// <auto-generated/>
#pragma warning disable 1591
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetC... |
using System;
using System.Linq;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Navigation;
using Quarrel.Managers;
// Pour plus d'informations sur le modèle d'élément Page vierge, consultez la page https://go.microsoft.com/fwlink/?LinkId=234238
namespace Q... |
#region License
// Copyright (c) 2007 James Newton-King
//
// 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, ... |
using System;
using System.Collections.Generic;
#nullable disable
namespace ProjectMann.Core.Domain
{
public partial class Ticket
{
public Ticket()
{
ComentarioTickets = new HashSet<ComentarioTicket>();
}
public int IdTicket { get; set; }
public int? FkAsi... |
namespace OpenTracker.Models.SaveLoad
{
/// <summary>
/// This class contains sequence break save data.
/// </summary>
public class SequenceBreakSaveData
{
public bool Enabled { get; set; }
}
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace rogueliche
{
public class EmptyLevel : ILocation
{
public EmptyLevel(string name, int width, int height)
{
Name = name;
Generator = new Generato... |
using cc.Networking.Client;
namespace cc.Networking.Delegates
{
public delegate void ClientRemovedEventHandler(object source, ClientRemovedEventArgs args);
} |
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT
// 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 requir... |
// 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.Globalization;
using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;
namespace Microsoft.AspNetCore.Mvc... |
/*
* Copyright 2008 ZXing 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 required by applicable law or agreed ... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
///
/// Script creator: Oscar Oders - Last Updated: 2019-01-31
/// Adjustments: Sebastian Nilsson 2019-01-24
///
/// Known problems:
///
/// </summary>
[RequireComponent(typeof(BoxGridGenerator)... |
using System;
using System.Collections.Generic;
using Serilog;
namespace Thinktecture.EnumLikeClasses
{
public class EnumLikeClassDemos
{
public static void Demo(ILogger logger)
{
DemoForNonValidatableEnum(logger);
DemoForValidatableEnum(logger);
}
private static void D... |
// -----------------------------------------------------------------------
// <copyright file="IEntityRoleStore.cs" company="OSharp开源团队">
// Copyright (c) 2014-2018 OSharp. All rights reserved.
// </copyright>
// <site>http://www.osharp.org</site>
// <last-editor>郭明锋</last-editor>
// <last-date>2018-07-03 22... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Contoso.Core;
using Contoso.Data;
using Contoso.Data.Repository;
using Contoso.Core.Domain;
namespace Contoso.Service.Service
{
public class DepartmentService : IDepartmentService
{
... |
using System;
using System.Xml.Serialization;
using System.ComponentModel.DataAnnotations;
using BroadWorksConnector.Ocip.Validation;
using System.Collections.Generic;
namespace BroadWorksConnector.Ocip.Models
{
/// <summary>
/// Get the user's voice messaging voice portal settings.
/// The response is eit... |
using Newtonsoft.Json;
using RKon.Alexa.NET.JsonObjects;
namespace RKon.Alexa.NET.Payloads
{
/// <summary>
/// Payload for Errors with REQUESTED_SETPOINTS_TOO_CLOSE type
/// </summary>
public class RequestedSetpointsTooCloseErrorPayload : ErrorPayload
{
/// <summary>
/// Indicates... |
using System;
using System.Collections.Generic;
using System.Linq;
using Foundation;
using UIKit;
namespace GLKReflectionMapEffectSkybox
{
public class Application
{
// This is the main entry point of the application.
static void Main (string[] args)
{
// if you want to use a different Application Delegate ... |
/**
* @file stripPackage.cs
* @brief Strips the given package from the given SBML file.
* @author Frank T. Bergmann
*
* <!--------------------------------------------------------------------------
* This sample program is distributed under a different license than the rest
* of libSBML. This program uses ... |
using Confluent.Kafka;
using Confluent.Kafka.Admin;
using static System.TimeSpan;
using static System.String;
namespace Krimson;
[PublicAPI]
public static class AdminClientExtensions {
static readonly TimeSpan DefaultRequestTimeout = FromSeconds(10);
public static async Task<bool> CreateTopic(
this I... |
using RoR2;
using R2API;
using Mono.Cecil.Cil;
using MonoMod.Cil;
using System;
using UnityEngine;
using System.Collections.Generic;
using UnityEngine.Networking;
using RiskyMod.SharedHooks;
namespace RiskyMod.Items.Common
{
public class Crowbar
{
public static bool enabled = true;
public stat... |
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;
namespace System.ServiceModel.Security
{
... |
using Emeraldwalk.PerlLanguage.Perl.Parsing;
using Microsoft.VisualStudio;
using Microsoft.VisualStudio.Package;
using Microsoft.VisualStudio.TextManager.Interop;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Emeraldwalk.PerlLanguage.Perl... |
// 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;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Diagnostics;
using... |
using System;
using System.Threading.Tasks;
using Abp.Dependency;
using Abp.MqMessages;
namespace Abp.Auditing.AuditingStores
{
public class MqMessageAuditingStore : IAuditingStore, ITransientDependency
{
private readonly Lazy<IMqMessagePublisher> MqMessagePublisher;//why this need Lazy<>?
pu... |
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("Edi... |
using System;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using System.Data.Common;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration;
using System.Xml;
using System.Xml.Serialization;
using SubSonic;
using SubSonic.Utilities;... |
// Copyright © 2015 Dmitry Sikorsky. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Platformus.Barebone.Backend.ViewModels.Shared;
using Platformus.Globalization.Backend.ViewModels;
namespace Platformus.Forms.Backend.ViewMode... |
namespace Aspekt.Drones
{
public interface IManager
{
void Init();
}
} |
namespace SixKeysOfTangrinTests;
[TestClass]
public class GameTests : TestsBase
{
private const string TideTimerMessage = "You have 200 minutes before the tide returns";
[TestMethod]
public void CanShowGameTitle()
{
game.ShowTitle();
outputDevice.Received().ShowTitle(Game.Title);
... |
// Copyright (C) 2003-2010 Xtensive LLC.
// All rights reserved.
// For conditions of distribution and use, see license.
// Created by: Dmitri Maximov
// Created: 2007.09.13
namespace Xtensive.Orm.Building
{
internal enum ValidationRule
{
Type = 0,
Database = 1,
Schema = 2,
Field = 3,
Column... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Panosen.CodeDom.Tag.Vue.Vuetify
{
public class VRadioComponent : VuetifyComponent
{
public override string Name { get; set; } = "v-radio";
public VRadioComponent _Valu... |
using Microsoft.Extensions.Options;
using OptionsDemo.Services;
namespace OptionsDemo
{
public class OrderServiceValidateOptions : IValidateOptions<OrderServiceOptions>
{
public ValidateOptionsResult Validate(string name, OrderServiceOptions options)
{
if (options.MaxOrderCount > 1... |
using System;
using System.Threading.Tasks;
using MockMock.ConsoleApp.Requests;
using MockMock.MockLib.CustomTypes;
using MockMock.MockLib.Responses;
using MockMock.MockLib.Services;
using Xunit;
namespace MockMock.Tests
{
public class PingServiceTests
{
[Fact(DisplayName = "Setup success")]
pu... |
namespace ProxyNet.Events
{
using System;
using System.IO;
public class ProxyResponseEventArgs : EventArgs
{
public ProxyResponseEventArgs(Guid guid, long requestNum, string url, Stream responseStream)
{
this._guid = guid;
this._requestNum = requestNum;
... |
namespace Radix.Math.Pure.Algebra.Operations;
public delegate T Nullary<out T>();
public static class Nullary
{
public static Nullary<T> Constant<T>(T value) => () => value;
} |
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CodeActions;
using Microsoft.CodeAnalysis.CodeFixes;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.Formatting;
using System.Collections.Immutable;
using System.Composition;
using System.Linq;
usin... |
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
/... |
using LogicAppTemplate.Models;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.IO;
using System.Linq;
using System.Management.Automation;
using System.Runtime.Caching;
namespace LogicAppTemplate
{
[Cmdlet(VerbsCommon.Get, "NestedResourceTemplate", ConfirmImpact = ConfirmImpact.None)]... |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
namespace Microsoft.Bot.Connector
{
/// <summary>
/// Message reaction types
/// </summary>
/// <remarks>
/// Message reactions are an open set. This class contains some common values.
/// </remarks... |
namespace ESRI.ArcLogistics.App
{
/// <summary>
/// Defines license activation statuses.
/// </summary>
internal enum LicenseActivationStatus
{
/// <summary>
/// The license was not yet activated.
/// </summary>
None,
/// <summary>
/// The license wa... |
using System;
using Foundation;
using UIKit;
using MaterialControls;
using MaterialControls.Xamarin.Sample.Core.ViewModels;
namespace MaterialControls.Xamarin.Sample.iOS.Views
{
public partial class DatePickerDialogView : BaseView<DatePickerDialogViewModel>
{
MDDatePickerDialog pickerDialog;
public DatePicker... |
// Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Runtime.CompilerServices;
using Avalonia.Data;
using Avalonia.Loggin... |
// Copyright 2019 Florian Gather <florian.gather@tngtech.com>
// Copyright 2019 Paula Ruiz <paularuiz22@gmail.com>
// Copyright 2019 Fritz Brandhuber <fritz.brandhuber@tngtech.com>
//
// SPDX-License-Identifier: Apache-2.0
using ArchUnitNET.Domain;
namespace ArchUnitNET.Fluent.Syntax.Elements.Members
{
publ... |
using System;
using System.Collections.Generic;
using System.Linq;
using uprove_json;
using uprove_json.Proofs;
using UProveCrypto;
using uprove_json.VerifierAuthenticationCredentials;
using UProveCrypto.PolyProof;
using uprove_json.IssuerVerification;
namespace uprove_uprovecommunicationissuing
{
public class Is... |
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BankOfItaly.ExchangeRate.Client.Model
{
public class CurrenciesResponse
{
[JsonProperty("currencies")]
public Currency[] Currencies { get; set; }
[JsonProperty("resul... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Odachi.JsonRpc.Common;
using Odachi.JsonRpc.Server.Builder;
namespace Odachi.JsonRpc.Server.Internal
{
public class JsonRpcHandlerBuilder : IJsonRpcHandlerBuilder
{
private readonly IList<Func<JsonRpcRequestDeleg... |
/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.