text stringlengths 1 932k |
|---|
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("Ge... |
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("Me... |
/**
* @file
* @author Yukio KANEDA
01234567890123456789012345678901234567890123456789012345678901234567890123456789
*/
/*
*
*/
using System.Collections.Generic;
using System.Text.RegularExpressions;
/*
*
*/
namespace ThunderEgg.ResourceIdentifiers {
public static class Const {
public static str... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Avalonia.Remote.Protocol.Viewport
{
public enum PixelFormat
{
Rgb565,
Rgba8888,
Bgra8888,
MaxValue = Bgra8888
}
[AvaloniaRemoteMessageGuid("6E3... |
// --------------------------------------------------------------------------------
// <copyright file="Constants.cs" company="Michalis Sarigiannidis">
// Copyright 2019 © Michalis Sarigiannidis. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the solution root for full license information.... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PocketApiV3
{
public interface IPocketAuthorData
{
string Name { get; set; }
string Url { get; set; }
}
} |
using System;
using NetRuntimeSystem = System;
using System.ComponentModel;
using NetOffice.Attributes;
namespace NetOffice.MSHTMLApi
{
#region Delegates
#pragma warning disable
public delegate void HTMLTableCaption_onhelpEventHandler();
public delegate void HTMLTableCaption_onclickEventHandler();
public delega... |
using System;
namespace AndrewLarsson.CircleOfTrust.AppService.Exceptions {
public class CircleDoesNotExistException : Exception {
public CircleDoesNotExistException()
: base("Circle does not exist.") {
}
}
} |
using System.Globalization;
using NUnit.Framework;
using UnityEngine.Localization.SmartFormat.Core.Extensions;
using UnityEngine.Localization.SmartFormat.Core.Settings;
using UnityEngine.Localization.SmartFormat.Extensions;
namespace UnityEngine.Localization.SmartFormat.Tests.Core
{
public class NamedFormatterTest... |
using Bitbucket.Net.Models.Core.Projects;
namespace Bitbucket.Net.Common.Converters
{
public class ScopeTypesConverter : JsonEnumConverter<ScopeTypes>
{
protected override string ConvertToString(ScopeTypes value)
{
return BitbucketHelpers.ScopeTypeToString(value);
}
... |
using Windows.UI.Xaml;
using Windows.UI.Xaml.Media;
namespace BinaryDataSerializer.Editor
{
public static class VisualHelper
{
public static TElement FindVisualParent<TElement>(this UIElement element) where TElement : UIElement
{
UIElement parent = element;
while (pare... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameController : MonoBehaviour
{
public int worldWidth;
public int worldHeight;
public WorldController worldController;
void Start()
{
worldController.GenerateWorld(worldWidth, worldHeight);
... |
using System;
using System.Collections.Generic;
namespace Alachisoft.NCache.Samples.NorthwindModels
{
[Serializable]
public partial class Territories
{
public Territories()
{
EmployeeTerritories = new HashSet<EmployeeTerritories>();
}
public string TerritoryId ... |
using AElf.Kernel.SmartContract.Application;
using AElf.Types;
namespace AElf.Contracts.Economic.TestBase
{
public class InlineTransferFromValidationProvider : IInlineTransactionValidationProvider
{
public bool Validate(Transaction transaction)
{
return true;
}
}
} |
// Copyright (c) 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, copy, m... |
using System;
using System.IO;
using System.Text.Json;
namespace GodotGithubOverview
{
public static class Utils
{
public static void WriteObjectToJsonFile<T>(string filename, T inputObject)
{
var prsJson = JsonSerializer.Serialize(inputObject, new JsonSerializerOptions
{
WriteIndented = true,
});
... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Practica_2
{
public partial class Ventana : Form
{
Graphics g;
int pos... |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by \generate-code.bat.
//
// Changes to this file will be lost when the code is regenerated.
// The build server regenerates the code before each build and a pre-build
// step ... |
using System;
using System.Collections.Generic;
using System.Diagnostics;
using JetBrains.Annotations;
using QuikGraph.Algorithms.Services;
namespace QuikGraph.Algorithms.ShortestPath
{
/// <summary>
/// A single source shortest path algorithm for directed acyclic graphs.
/// </summary>
/// <typeparam ... |
/*
* 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... |
//
// Swiss QR Bill Generator for .NET
// Copyright (c) 2018 Manuel Bleichenbacher
// Licensed under MIT License
// https://opensource.org/licenses/MIT
//
using libQrCodeGenerator.SwissQRBill.Generator.PDF;
using System.IO;
namespace libQrCodeGenerator.SwissQRBill.Generator.Canvas
{
/// <summary>
/// Canvas ... |
using System;
using System.Collections;
using System.Collections.Generic;
using Unity.Mathematics;
using UnityEngine;
using UnityEngine.UI;
public class GameManager : MonoBehaviour
{
public GameObject gameBeginCanvas;
public GameObject gameOverCanvas;
public GameObject gameWinCanvas;
public GameObject... |
using System;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using Microsoft.Recognizers.Definitions.Japanese;
using DateObject = System.DateTime;
namespace Microsoft.Recognizers.Text.DateTime.Japanese
{
public class JapaneseDateExtractorConfiguration : AbstractYearExtractor, IDateTimeExt... |
namespace GedValid
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param nam... |
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using Xunit;
namespace Microsoft.Framework.Runtime.Tests
{
public class CompilerOptionsFacts
{
[Fact]
... |
/// <summary>
/// Event Block
/// This is HatBlock
/// Command is Event
///
/// How This Works??
/// From RobotBase, Call StartFlowBlock(RobotBase), Then Flow Block attached To This Block is called
///
/// In Block Editor, Place EventBlock, And Set Event Name To Input1, And Attach next block To This Placed Event Blo... |
/*************************************************************************************
Toolkit for WPF
Copyright (C) 2007-2019 Xceed Software Inc.
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/m... |
// <copyright file="VanillaEvents.cs" company="dymanoid">
// Copyright (c) dymanoid. All rights reserved.
// </copyright>
namespace RealTime.Events
{
using System;
using System.Collections.Generic;
using SkyTools.Tools;
/// <summary>
/// A class for handling the vanilla game events data.
/// ... |
using System;
using MarkdownSharp;
using Mulder.Base.Compilation;
namespace Mulder.Base.Filters
{
public class MarkdownFilter : IFilter
{
public MarkdownFilter()
{
}
public string Execute(string source, FilterContext filterContext)
{
var markdown = new Markdown();
string output = markdown.Transf... |
namespace AForge.Imaging.Filters
{
using AForge;
using AForge.Imaging;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
public class CornersMarker : BaseInPlaceFilter
{
private ICornersDetector detector;
private Diction... |
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Newtonsoft.Json;
using System.Net.Http;
using System.Diagnostics;
using Newtonsoft.Json.Linq;
namespace TonyHoyle.EH
{
public class EHApi
{
private HttpClient _httpClient;
private Dictionary<int, ConnectorDetai... |
// 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.Diagnostics;
using System.Globalization;
using System.Xml;
using System.Xml.XPath;
names... |
using AutoMapper;
using Microsoft.EntityFrameworkCore;
using MyWarehouse.Application.Common.Dependencies.DataAccess.Repositories;
using MyWarehouse.Domain.Transactions;
using MyWarehouse.Infrastructure.ApplicationDependencies.DataAccess.Repositories.Common;
using MyWarehouse.Infrastructure.Persistence.Context;
using S... |
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
namespace ReactBookStore.Web.Services
{
public class BooksService
{
private readonly List<Book> _defaultBooks = new List<Book>
{
new Book{ Category = "Children", Id = 10000, PhotoUrl = "htt... |
/* Copyright (c) Citrix Systems Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms,
* with or without modification, are permitted provided
* that the following conditions are met:
*
* * Redistributions of source code must retain the above
* copyright notice, this li... |
using Business.BusinessAspects;
using Business.Constants;
using Core.Utilities.Results;
using DataAccess.Abstract;
using MediatR;
using System.Threading;
using System.Threading.Tasks;
namespace Business.Handlers.UserGroups.Commands
{
[SecuredOperation]
public class DeleteUserGroupCommand : IRequest<IResult>
... |
/*
* 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 Opdex.Platform.Common.Enums;
using Opdex.Platform.Common.Models;
using System.Collections.Generic;
namespace Opdex.Platform.Application.Abstractions.Models.Tokens;
public class TokenDto
{
public ulong Id { get; set; }
public Address Address { get; set; }
public string Name { get; set; }
public s... |
using UnityEngine;
namespace Neodroid.Runtime.Utilities.Plotting {
[ExecuteInEditMode]
public class ValueRangePlotter : MonoBehaviour {
[SerializeField] Shader _shader;
[SerializeField] Bounds _value_range = new Bounds(Vector3.zero, Vector3.one * 2);
Material _material;
void OnDestroy() {
... |
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("Qu... |
using System.Reflection;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("AWSSDK.Signer")]
[assembly: AssemblyDescri... |
using System;
using NetOffice;
namespace NetOffice.ExcelApi.Enums
{
/// <summary>
/// SupportByVersion Excel 12, 14, 15, 16
/// </summary>
///<remarks> MSDN Online Documentation: http://msdn.microsoft.com/en-us/en-us/library/office/ff821954.aspx </remarks>
[SupportByVersionAttribute("Excel", 12,14,15,16)]
[En... |
using Jp.UI.SSO.Util;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.HttpOverrides;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
namespace Jp.UI.SSO.Configuration
{
public static class SecurityHeadersConfiguration
{
p... |
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... |
// 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.Globalization;
using System.IO;
using System.Linq;
usin... |
// 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.IO;
using System.Linq;
namespace ReadyToRun.SuperIlc
... |
// *** WARNING: this file was generated by pulumigen. ***
// *** 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.Kubernetes.Types.Ou... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace A_Medya
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
} |
// Copyright (c) Jeremy W. Kuhne. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace WInterop.Storage
{
/// <summary>
/// Drive types.
/// </summary>
/// <docs>https://docs.microsoft.com/en-us/windows/win32/api/fileapi/... |
// *****************************************************************************
// BSD 3-Clause License (https://github.com/ComponentFactory/Krypton/blob/master/LICENSE)
// © Component Factory Pty Ltd, 2006 - 2016, All rights reserved.
// The software and associated documentation supplied hereunder are the
// prop... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Mageball : MonoBehaviour
{
public float ballVelocity = 10f;
public Rigidbody2D rb;
public int damage = 40;
public Transform Player;
void Start()
{
if (rb == null) transform.GetComponent<Rigid... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MapManager
{
using System.Collections.Generic;
using System.Drawing;
public class Renderer
{
public static Bitmap RenderLayers(IEnumerable<Layer> layers, int width, in... |
using System.ComponentModel;
using System.Linq;
namespace QFramework.GraphDesigner
{
public class SingleInputSlot<TFor> : GenericSlot
{
public override bool AllowMultipleInputs
{
get { return false; }
}
public override bool AllowMultipleOutputs
{
... |
using com.threerings.math;
using com.threerings.opengl.model.config;
using System.Collections.Generic;
using System.IO;
using ThreeRingsSharp.Utility;
using ThreeRingsSharp.Utility.Interface;
using ThreeRingsSharp.XansData;
using ThreeRingsSharp.XansData.Exceptions;
using static com.threerings.opengl.model.config.Comp... |
// ------------------------------------------------------------------------------
// <auto-generated>
// Generated by Xsd2Code. Version 3.4.0.18239 Microsoft Reciprocal License (Ms-RL)
// <NameSpace>Mim.V3109</NameSpace><Collection>Array</Collection><codeType>CSharp</codeType><EnableDataBinding>False</EnableDat... |
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("Fr... |
using System.Xml;
namespace PrtgAPI.Tests.UnitTests.Support.Serialization
{
class DummyAttributeSerializerManual<T> : DummySerializerManualBase<DummyAttribute<T>>
{
public DummyAttributeSerializerManual(XmlReader reader) : base(reader)
{
}
protected override DummyAttribute<T> ... |
using GameSpec.Cry.Formats.Models;
using System.Collections.Generic;
namespace GameSpec.Cry.Formats.Core
{
public class SkinningInfo
{
/// <summary>
/// If there is skinning info in the model, set to true.
/// </summary>
public bool HasSkinningInfo { get; set; }
/// <su... |
//------------------------------------------------------------------------------
// <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>
//---... |
// ================================================================================================
// <summary>
// タイトル画像の表示更新を行うクラスソース</summary>
//
// <copyright file="TitleImageUpdater.cs">
// Copyright (C) 2017 Koichi Tanaka. All rights reserved.</copyright>
// <author>
// Koichi Tanaka</author>
// ... |
using Newtonsoft.Json;
using System.Collections.Generic;
namespace Fortnite.Net.Objects.Party
{
public class PartyJoinUser
{
public string Id { get; set; }
[JsonProperty("dn")]
public string DisplayName { get; set; }
[JsonProperty("plat")]
public string Platform { g... |
/* SPDX-License-Identifier: Apache-2.0
*
* The OpenSearch Contributors require contributions made to
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*
* Modifications Copyright OpenSearch Contributors. See
* GitHub history for details.
*
* Licensed to Elasticsearch B.V. unde... |
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
/... |
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.IO;
using System.Text;
using System.Threading;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
... |
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using OkonkwoOandaV20.Framework.Factories;
using OkonkwoOandaV20.TradeLibrary.REST;
using OkonkwoOandaV20.TradeLibrary.Transaction;
using System;
namespace OkonkwoOandaV20.Framework.JsonConverters
{
public class TransactionsStreamResponseConverter : AbstractJsonCo... |
namespace QLearningMaze.Ui.Forms
{
using QLearningMaze.Core.Mazes;
using System;
using System.Windows.Forms;
public partial class TabledDetailsView : Form
{
public enum ValueTypes
{
Quality,
Rewards,
StateSpace
}
private IMaze _... |
using System.Windows.Controls;
namespace UtilityWpf.Demo.Dragablz
{
/// <summary>
/// Interaction logic for DragUserControl.xaml
/// </summary>
public partial class NotesUserControl : UserControl
{
public NotesUserControl()
{
InitializeComponent();
}
p... |
using CadEditor;
using System;
using System.Collections.Generic;
//css_include ninja_cats/NinjaCatUtils.cs;
public class Data
{
public OffsetRec getScreensOffset() { return new OffsetRec(9341, 32 , 8*5, 5, 8); }
public bool getScreenVertical() { return true; }
public bool isBigBlockEditorEnabled() {... |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.488
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//----... |
using Microsoft.Win32.SafeHandles;
using NAudio.Wave;
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.MemoryMappedFiles;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
using System.Xml.Serialization;
namespace Loopstream
{
publi... |
/*
* 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... |
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
using IdentityServer4.Extensions;
using IdentityServer4.Models;
using IdentityServer4.Services;
using Microsoft.AspNetCore.Authorization;
usin... |
// <auto-generated/>
#pragma warning disable 1591
namespace Test
{
#line hidden
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Components;
public partial class TestComponent : Microsoft.AspNetCore.Components.Compone... |
using UnityEngine;
namespace UnityEditor.Recorder
{
/// <summary>
/// Base class for all Recorder inputs that capture images.
/// </summary>
public abstract class BaseRenderTextureInput : RecorderInput
{
/// <summary>
/// Enables asynchronous readback of GPU resources if the platfor... |
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Moq;
using Newtonsoft.Json;
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using UniversalRingApi.Entities;
namespace Univers... |
using DragonSpark.Application.Security.Identity.Authentication;
using DragonSpark.Application.Security.Identity.Profile;
using DragonSpark.Compose;
using DragonSpark.Model.Selection;
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.ModelBinding;
using NetFabric.Hyperl... |
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("10... |
using MediatR;
using SFA.DAS.Notifications.Api.Types;
namespace SFA.DAS.EmployerAccounts.Commands.SendNotification
{
public class SendNotificationCommand : IAsyncRequest
{
public Email Email { get; set; }
}
} |
// Copyright (c) 2018 Daniel A Hill. 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 ... |
using System;
using UIKit;
using SidePanels;
namespace SidePanelsSample
{
partial class CenterViewController : DebugViewController
{
public CenterViewController()
{
}
public CenterViewController(IntPtr handle)
: base(handle)
{
}
pub... |
#region Using directives
using System;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Resources;
#endregion
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an a... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Mvc;
using coderush.Data;
using coderush.Models... |
using System.IO;
namespace ArdalisRating.ISP
{
public class FilePolicySource
{
public string GetPolicyFromSource()
{
return File.ReadAllText(Path.Combine(Directory.GetCurrentDirectory(), "policy.json"));
}
}
} |
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
namespace PoissonSoft.KuCoinApi.Contracts.Enums
{
/// <summary>
/// Account type
/// </summary>
public enum AccountType
{
/// <summary>
/// Main
/// </summary>
[En... |
@using RakamIKProjesi.Models.Siniflar
@using PagedList
@using PagedList.Mvc
@*@model PagedList.IPagedList<Projeler>*@
@model PagedList.IPagedList<Personel>
@{
ViewBag.Title = "IndexArama";
Layout = "~/Views/Shared/_AdminLayout.cshtml";
}
<h2 style="margin-top:30px; margin-bottom:30px">Projeler</h2>
<hr />
<b... |
using AgGateway.ADAPT.ApplicationDataModel.ADM;
using AgGateway.ADAPT.ApplicationDataModel.Guidance;
using GeoJSON.Net.Feature;
using System.Collections.Generic;
using GeoJSONPlugin.Mappers.GeoJson;
namespace GeoJSONPlugin.Mappers
{
internal class AbLineMapper
{
private ApplicationDataModel _dataModel... |
using Google.Cloud.Firestore;
using Microsoft.Extensions.Hosting;
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace FirestoreSandbox
{
public class MyService : IHostedService
{
private readonly FirestoreDb _db;
public MyService(Fir... |
// Copyright (c) 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, copy, mo... |
using System;
using System.Collections.Generic;
using System.Text;
using Zop.DTO;
namespace Zop.Identity.DTO.Request
{
/// <summary>
/// 修改客户端安全配置Dto
/// </summary>
public class ClientSetSafetyRequestDto:RequestDto
{
/// <summary>
/// 是否需要密钥来从令牌端点请求令牌(默认为true)
/// </summary... |
using Newtonsoft.Json;
namespace Pathoschild.SlackArchiveSearch.Models
{
/// <summary>Basic information about a Slack user.</summary>
public class User
{
/// <summary>The internal unique identifier.</summary>
public string ID { get; set; }
/// <summary>The user's login username.</... |
using Newtonsoft.Json;
namespace BasicLogin.Dtos
{
public class GenderDto
{
[JsonProperty("id", Required = Required.Always)]
public int Id { get; set; }
}
} |
// <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 RequestService.Repo;
namespace R... |
using System;
using NetRuntimeSystem = System;
using System.ComponentModel;
using NetOffice.Attributes;
namespace NetOffice.AccessApi
{
/// <summary>
/// CoClass LocalVar
/// SupportByVersion Access, 14,15,16
/// </summary>
[SupportByVersion("Access", 14,15,16)]
[EntityType(EntityType.IsCoClass)]
[TypeId("835... |
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
namespace PIDControlWithGeneticAlgorithm.UI
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App :... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
namespace System.ComponentModel
{
/// <summary>
/// Provides a type converter to convert <see cref='System... |
using Pinknose.DistributedWorkers.MessageTags;
using Pinknose.DistributedWorkers.Modules;
using Pinknose.DistributedWorkers.XBee.Messages;
using Pinknose.Utilities;
using Serilog;
using System;
using System.Diagnostics;
using System.Linq;
using System.Text;
using XBeeLibrary.Core;
using XBeeLibrary.Core.Events;
using ... |
using UnityEngine;
using UnityEditor;
using System.Collections.Generic;
using System.Linq;
using com.spacepuppy;
using com.spacepuppy.Collections;
using com.spacepuppy.Utils;
namespace com.spacepuppyeditor.Core
{
[CustomPropertyDrawer(typeof(FindInSelfAttribute))]
public class FindInSelfModifier : PropertyM... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace org.Core.ServiceModel
{
/// <summary>
///
/// </summary>
public sealed class DataServiceContract : IDataServiceContract
{
#region Constructors
/// <summary... |
using Klyte.Commons.Interfaces;
using System;
using System.Xml.Serialization;
namespace Klyte.TransportLinesManager.Xml
{
public class UintValueHourEntryXml<T> : ITimeable<T> where T : UintValueHourEntryXml<T>
{
private int m_hourOfDay;
private uint m_value;
[XmlAttribute("startTime"... |
namespace Osls.Plants.MassTestChamber
{
public class TestLaser
{
#region ==================== Fields / Properties ====================
public int ActiveLaserTime { get; private set; }
#endregion
#region ==================== Public Methods ====================
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.