content stringlengths 23 1.05M |
|---|
/*
* Copyright 2016-2017 Mohawk College of Applied Arts and Technology
*
* 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 requ... |
namespace RxAuto.Data.Models
{
public class JobPositionQualification
{
//------------ JobPosition [FK] -----------
public int JobPositionId { get; set; }
public virtual JobPosition JobPosition { get; set; }
//------------ Qualification [FK] -----------
public int Qualif... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace GM
{
public class UnitManager : MonoBehaviour
{
GameManager gameManager;
public float maxUnits = 10;
public float timeScale = 1; // pomocou timeScale vieme menit "rychlost" pohybu jednotiek
float delta;
... |
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using QifApi.Transactions;
namespace MyAccounts.Business.GererMesComptes
{
public class TransactionDeltaSet : IEnumerable<TransactionDelta>
{
private readonly int[] _counters = new int[Enum.GetValues(typeof(Del... |
using AudioTagger.Network.ResponseDataJson;
using AudioTagger.Network.ResponseDataJson.AlbumInfo;
using System.Threading.Tasks;
namespace AudioTagger.ui.MVP.LastFM
{
interface ILastFMModel
{
Task<TrackSearch> SearchTrack(string title, string artist);
Task<TrackInfo> RequestInfoTrack(string mbi... |
// AckToon GUI
using UnityEditor;
using UnityEngine;
using UnityEngine.Rendering;
namespace Synergiance.Shaders.AckToon {
public class GradientInspector : BaseInspector {
protected override bool hasGradient { get { return true; }}
protected override void DoToon() {
ShaderProperty("_ToonIntensity");
Gradi... |
using UnityEngine;
[RequireComponent(typeof(Rigidbody2D))]
public class Bullet : MonoBehaviour
{
[SerializeField]
int speed = 10;
public int Speed
{
get => speed;
set => speed = value;
}
[SerializeField]
int power = 1;
public int Power
{
get => power;
set => power = value;
}
pub... |
using System.IO;
using System.Threading.Tasks;
using Bluehands.Hypermedia.Client.Hypermedia;
using Bluehands.Hypermedia.Client.Resolver;
namespace Bluehands.Hypermedia.Client.Reader
{
public interface IHypermediaReader
{
void InitializeHypermediaResolver(IHypermediaResolver resolver);
Hypermed... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BL.Tecnologia
{
public class SeguridadBL
{
Contexto _contexto;
public SeguridadBL()
{
_contexto = new Contexto();
... |
using UnityEngine;
namespace WebXR.Interactions
{
[RequireComponent(typeof(Rigidbody))]
public class MouseDragObject : MonoBehaviour
{
private Camera m_currentCamera;
private Rigidbody m_rigidbody;
private Vector3 m_screenPoint;
private Vector3 m_offset;
private Vector3 m_currentVelocity;
... |
#nullable enable
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace Microsoft.Maui
{
public static class TaskExtensions
{
public static async void FireAndForget(
this Task task,
Action<Exception>? errorCallback
)
{
try
{
await task;
}... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.ComponentModel;
namespace System.Configuration
{
/// <summary>
/// Event args for the SettingChanging event.
/// </summary>
public class SettingChanging... |
// ThreadDataTransferIII.cs
//
// Showing use of local variables
//
// (C) Datasim Education BV 2009
//
using System;
using System.Threading;
public class ThreadData_III
{
public static void Main()
{
// Create a thread running the "Print" method.
Thread ts = new Thread(Print... |
using System;
namespace Lenic.Web.WebApi.Expressions.Core.Writers
{
internal class EnumValueWriter : IValueWriter
{
public bool Handles(Type type)
{
return type.IsEnum;
}
public string Write(object value)
{
var enumType = value.GetType();
... |
using System;
using System.IO;
using SevenZip.NativeInterface.IO;
namespace SevenZip.IO
{
class CoderHeaderReader
: ICoderHeaderReader
{
private delegate void CoderPropertySetter();
private SequentialInStreamReader _bytesDataReader;
private CoderPropertySetter _coderPropertySe... |
using System;
using System.Collections.Generic;
using System.Text;
using Newtonsoft.Json;
namespace CFX.Structures
{
/// <summary>
/// Describes when single lot of material that is uninstalled from a production unit,
/// possibly from specific locations on the production unit.
/// </summary>
publ... |
using UnityEngine;
internal static class VectorExtensions
{
public static Vector2 RotateClockwise(this Vector2 vector, float radians)
{
return vector.RotateCounterClockwise(-radians);
}
public static Vector2 RotateCounterClockwise(this Vector2 vector, float radians)
{
return new V... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace GGJ2019 {
public class GridIcon : MonoBehaviour {
//Tells if the player can go on this space
public bool isCrossable = true;
//Tells if the current Icon is selected by the user
[System.NonSerialized] public bool isSele... |
using DL.Data;
using DL.Data.Infrastructure.ContextControl;
namespace DL.Tests.Infrastructure.Fakes
{
public class EntityFrameworkInMemoryDbContextFactory : IDbContextFactory
{
public ApplicationDbContext For()
{
return new EntityFrameworkInMemoryDbContext("DatabaseConnectionString... |
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Windows.Media.Imaging;
using Autodesk.DesignScript.Interfaces;
using ICSharpCode.AvalonEdit.CodeCompletion;
using ICSharpCode.AvalonEdit.Document;
using ICSharpCode.AvalonEdit.Editing;
namespace Dynamo.Python
{
/// Implements Av... |
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Backend.GraphQL.Helper.Schema.Base;
using GraphQL.Types;
namespace Backend.GraphQL.Helper.Schema
{
public class GraphQLMutation : ObjectGraphType<object>
{
public GraphQLMutation(IEnumerable<GraphQLBaseInformation> fie... |
//
// GET: /Checkout/AddressAndPayment
public ActionResult AddressAndPayment()
{
return View();
} |
using System.Collections.Generic;
using Client.Source.Coins;
using Client.Source.Common.Components;
using Client.Source.Gameplay.Events;
using Client.Source.Hex;
using Leopotam.Ecs;
namespace Client.Source.Gameplay.Systems
{
public class CoinWildBoostSystem : IEcsRunSystem
{
private EcsFilter<CoinComp... |
using UnityEngine;
public class Fade : MonoBehaviour
{
private static GameObject fade_obj;
public static Color fade_color;
private static float change_time;
private void Start()
{
change_time = 0f;
fade_obj = gameObject;
fade_color = fade_obj.GetComponent<Render... |
using Blossomic.Converters;
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Blossomic.Noodle
{
public class CustomObjectData
{
[JsonExtensionData]
public Dictionary<string, object> ExtensionData { get; set; } = new();
[JsonPropertyName("_track"), Json... |
using System;
using Researcher.Bot.Integration.Slack.Interfaces;
namespace Researcher.Bot.Implementations.Slack
{
public class SlackSecuredStore : ISlackSecuredStore
{
private readonly string SecretKey = Environment.GetEnvironmentVariable("SLACKAPI_SECRETKEY");
private readonly string SlackTok... |
using Halibut.Diagnostics;
using System;
using System.Collections.Generic;
using System.Linq;
namespace Halibut.Transport
{
public class ConnectionPool<TKey, TPooledResource>
where TPooledResource : class, IPooledResource
{
readonly Dictionary<TKey, HashSet<TPooledResource>> pool = new Dictiona... |
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
namespace SqlDb.Data
{
[Serializable]
public class TableResult : ISerializable
{
private List<object[]> rows;
private string[] columns;
public TableResult(string[] columns)
{
Co... |
// 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 Elastic.Apm.Logging;
using Elasticsearch.Net;
using Elasticsearch.Net.Diagnostics;
namespace Elastic.Apm... |
using System;
using System.Collections.Generic;
using System.Text;
namespace Microsoft.SqlServer.SpatialToolbox.KMLProcessor
{
/// <summary>
/// This class contains the information about a placemark extracted from the KML file
/// </summary>
public class Placemark
{
#region Public Properties
/// <summary>
... |
// <auto-generated />
// Built from: hl7.fhir.r5.core version: 4.6.0
// Option: "NAMESPACE" = "fhirCsR5"
using fhirCsR5.Models;
namespace fhirCsR5.ValueSets
{
/// <summary>
/// Used to code the format of the display string.
/// </summary>
public static class ContributorRoleCodes
{
/// <summary>
//... |
using System;
using System.Collections.Generic;
namespace XIVApiLib.Models.Responses
{
public class TitleListResponseModel : BaseResponseModel
{
public Pagination Pagination { get; set; }
public List<TitleModel> Results { get; set; } = new List<TitleModel>();
}
} |
using System;
using System.Runtime.Serialization;
namespace NumSharp
{
public interface INumSharpException { }
public class NumSharpException : Exception, INumSharpException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Exception"></see> class.</summary>
public NumS... |
/* See License.md in the solution root for license information.
* File: TestUtmGrid.cs
*/
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Geodesy;
namespace UnitTestGeodesy
{
[TestClass]
public class TestUtmGrid
{
UtmProjection utm = new UtmProjection();
private v... |
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Aims.Model
{
/// <summary>
/// 菜单
/// </summary>
public class Menu
{
/// <summary>
/// 主键
/// </summary>
[Key]
public... |
// //-----------------------------------------------------------------------
// // <copyright file="HomelandYamlGatewayTests.cs" company="Short Leg Studio, LLC">
// // Copyright (c) Short Leg Studio, LLC. All rights reserved.
// // </copyright>
// //-----------------------------------------------------------------... |
using Variables;
using UnityEngine;
namespace Variables.Types
{
[VariableMenu(menuName = "Default/Vector4", order = 102)]
public class Vector4Variable : Variable<Vector4> { }
}
|
using System.Linq;
namespace Billas.Identifier.VGR
{
public class VGRIdentifier : DateBasedPersonIdentifier<VGRFormatter>
{
public const string Oid = "1.2.752.113.11.0.2.1.1.1";
public override string System => Oid;
public override bool CanCalculateGender { get; }
publ... |
using System;
namespace PixelFarm.Drawing
{
/// <summary>
/// Agg's Color Extension
/// </summary>
public static class ColorEx
{
public const int COVER_SHIFT = 8;
public const int COVER_SIZE = 1 << COVER_SHIFT; //----cover_size
public const int COVER_MASK = COVER_SIZE - 1... |
namespace DataAccessLibrary
{
public class Score
{
public string TeamName1 { get; set; }
public string TeamName2 { get; set; }
public int TeamScore1 { get; set; }
public int TeamScore2 { get; set; }
public Score(string teamname1, string teamname2, int teamscore1, int te... |
using Mirror;
namespace WeaverCommandTests.CommandThatIgnoresAuthorityWithSenderConnection
{
class CommandThatIgnoresAuthorityWithSenderConnection : NetworkBehaviour
{
[Command(ignoreAuthority = true)]
void CmdFunction(NetworkConnectionToClient connection = null)
{
// do som... |
/*
* Copyright (C) Sportradar AG. See LICENSE for full license governing this code
*/
using System.Diagnostics.Contracts;
using Sportradar.OddsFeed.SDK.Entities.REST.Enums;
using Sportradar.OddsFeed.SDK.Messages.Internal.REST;
namespace Sportradar.OddsFeed.SDK.Entities.REST.Internal.DTO.Lottery
{
/// <summary>
... |
using IdentityModel;
using IdentityServer4;
using IdentityServer4.Models;
using IdentityServer4.Test;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Claims;
using System.Threading.Tasks;
namespace Accounts.GroupSpace.Configuration
{
public static class InMemoryConfigurati... |
using System;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;
namespace Editor {
[Serializable]
public class MyPluginWebSocketEditorWindow : EditorWindow
{
[MenuItem("Window/WebSocket Interface")]
public static void ShowWindow() {
GetWindow(typeof(MyPlugi... |
//
// System.ComponentModel.CategoryAttribute.cs
//
// Author:
// Miguel de Icaza (miguel@ximian.com)
// Andreas Nahr (ClassDevelopment@A-SoftTech.com)
//
// (C) Ximian, Inc. http://www.ximian.com
// (C) 2003 Andreas Nahr
//
//
//
// Permission is hereby granted, free of charge, to any person obtaini... |
using System;
using System.Threading.Tasks;
using SFA.DAS.Validation;
namespace SFA.DAS.EmployerAccounts.Queries.GetAccountLegalEntitiy
{
public class GetAccountLegalEntityValidator : IValidator<GetAccountLegalEntityRequest>
{
public ValidationResult Validate(GetAccountLegalEntityRequest item)
... |
namespace org.antlr.symtab
{
/// <summary>
/// A scope to hold predefined symbols of your language. This could
/// be a list of type names like int or methods like print.
/// </summary>
public class PredefinedScope : BaseScope
{
public override string Name
{
get
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CustCtrl_sample
{
public class Bean
{
public decimal AAA { set; get; }
public DateTime BBB { set; get; }
public string CCC { set; get; }
public Bean(decimal aaa, DateTime bbb, strin... |
namespace SkubanaAccess.Models.Infrastructure
{
public class CallInfo
{
public string Mark { get; set; }
public string LibMethodName { get; set; }
public string Endpoint { get; set; }
public string Method { get; set; }
public object Body { get; set; }
public string AdditionalInfo { get; set; }
... |
namespace BulkOperations.EntityFramework.Tests.Models
{
public partial class ProductInventory
{
public virtual int ProductID { get; set; }
public virtual short LocationID { get; set; }
public virtual string Shelf { get; set; }
public virtual byte Bin { get; set; }
public ... |
using System;
using System.Collections.Generic;
using System.Text;
using AtomIoc.Tests.Classes;
using Xunit;
namespace AtomIoc.Tests.ContainerTests
{
public class KeyedContainerTests
{
[Fact]
public void KeyedRegistration()
{
var container = new Container();
co... |
using System.IO;
using ValveMultitool.Models.Formats.Lump;
using ValveMultitool.Utilities.Extensions;
namespace ValveMultitool.Models.Formats.GameStats.Legacy.Custom.Ep2
{
public class Ep2SaveGameInfoRecord : LumpElement
{
public int FirstDeathIndex;
public int NumDeaths;
// Health an... |
using MySql.Data.MySqlClient;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Runtime.InteropServices;
using System.Web;
namespace WebBase.Models
{
public class GroupFunction : ISqlCreator
{
pub... |
using Autofac;
using Microsoft.AspNetCore.Mvc.RazorPages;
using WarpDeck.Application.Device;
using WarpDeck.Domain.Key;
namespace WarpDeck.Presentation.Pages
{
public class Layer : PageModel
{
private readonly DeviceManager _deviceManager;
public KeyMap LayerKeys { get; set; }
public st... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using XCode;
using XCode.Configuration;
using XCode.DataAccessLayer;
namespace COMCMS.Core
{
/// <summary>后台菜单</summary>
[Serializable]
[DataObject]
[Description("后台菜单")]
[BindTable("AdminMenu", Description = "后台菜单", ConnN... |
using Newtonsoft.Json;
using System.IO;
namespace MapleLauncher.Utilities
{
public static class JsonUtilities
{
public static string Serialize(object T)
{
return JsonConvert.SerializeObject(T, Formatting.Indented);
}
public static T Deserialize<T>(string value)
{
return JsonConvert.De... |
using EPI.BinaryTree;
using FluentAssertions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace EPI.UnitTests.BinaryTree
{
[TestClass]
public class SumOfRootToLeafPathsUnitTest
{
[TestMethod]
public void FindSumOfRootToLeafPaths()
{
BinaryTree<bool> tree = new BinaryTree<bool>()
{
Root ... |
namespace BahnEditor.BahnLib
{
// TODO Write documentation
public class GraphicProperties
{
//TODO Move RawData to ctor
public Properties RawData { get; set; }
public uint ColorInSchematicMode { get; set; }
public int ParticleX { get; set; }
public int ParticleY { get; set; }
public int ParticleWidth {... |
using JumpStatements;
Console.WriteLine("------------- break examples ---------------");
BreakStatement.Examples();
Console.WriteLine();
Console.WriteLine("------------- continue examples ------------");
ContinueStatement.Examples();
Console.WriteLine();
Console.WriteLine("------------- return examples ------------... |
using DemoCore.Domain.Commands;
namespace DemoCore.Domain.Validations
{
public class RegisterNewDeveloperCommandValidation: DeveloperValidation<RegisterNewDeveloperCommand>
{
public RegisterNewDeveloperCommandValidation()
{
ValidateDeveloper();
}
}
}
|
using System;
using System.Drawing;
using System.Windows.Forms;
using AnimateForms.Animate;
namespace AnimateForms
{
public partial class Demo : Form
{
private readonly int d = 2000;
private Size eS = new Size(300, 20);
private Size dS = new Size(20, 20);
private readonly Anim... |
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System.Collections.Generic;
using System.Linq;
using SixLabors.ImageSharp.Drawing.Processing;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using Xunit;
namespace SixLabors.ImageSharp.Drawing.Tests.... |
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
public static class Box<T>
where T : IComparable<T>
{
public static int Compare(IEnumerable<T> collection,T element)
{
var count = 0;
foreach (var e in collection)
{
if (e.CompareTo... |
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using BioEngine.Core.Abstractions;
using BioEngine.Core.Validation;
using FluentValidation.Results;
namespace BioEngine.Core.Repository
{
public abstract class SectionEntityRepository<TEntity> : ContentEntityRepository<TEntity>
... |
using System.Linq;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Jobs;
using BenchmarkDotNet.Running;
using Xunit;
namespace BenchmarkDotNet.Tests.Running
{
public class BenchmarkConverterTests
{
/// <summary>
/// https://github.com/dotnet/BenchmarkDotN... |
namespace EphemerisNetTests.Coordinates
{
using EphemerisNet.Coordinates;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using FluentAssertions;
[TestClass]
public class GeoCoordinateTest
{
private const string dS = "\x00B0";
[TestMethod]
public void TestHappyCas... |
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License - see LICENSE file in this repo.
namespace Microsoft.SqlServer.Utils.Misc.SQLCallStackResolver {
using System.IO;
using System.Text;
using System.Windows.Forms;
public partial class MultilineInput : Form {
public Multili... |
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// KoubeiCateringOrderPayConsultResponse.
/// </summary>
public class KoubeiCateringOrderPayConsultResponse : AopResponse
{
/// <summary>
... |
using System.Reflection;
using System.Reflection.Emit;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using static System.Reflection.Emit.OpCodes;
#nullable disable
namespace TheLeftExit.Brainfuck {
public record struct WhileLoop(Label Start, Label End);
public class Brainfuck... |
namespace RazzleServer.Common.Constants
{
public enum PinResult : byte
{
Valid = 0,
Register = 1,
Invalid = 2,
Error = 3,
Request = 4,
Cancel = 5
}
}
|
#region usings
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics;
using osuTK.Graphics;
#endregion
namespace osu.Game.Rulesets.Vitaru.Ruleset.Debug
... |
// Copyright (c) Martin Costello, 2015. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
namespace MartinCostello.AdventOfCode.Puzzles.Y2021;
/// <summary>
/// A class representing the puzzle for <c>https://adventofcode.com/2021/day... |
using Figlotech.Core.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Figlotech.Core
{
public class BasicMemoryCache
{
static int idGen = 0;
int myId = ++idGen;
private SelfInitializerDictionary<Type, object> DataCa... |
using System.Collections.Generic;
namespace UnityEngine.Rendering
{
/// <summary>
/// An interface for Volumes
/// </summary>
public interface IVolume
{
/// <summary>
/// Specifies whether to apply the Volume to the entire Scene or not.
/// </summary>
bool isGlobal {... |
/*
* 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.Collections;
//using System.Collections.Generic;
using UnityEngine;
using TMPro;
public class ScoreManager : MonoBehaviour {
private static ScoreManager instance;
public static ScoreManager Instance{
get{
//if(instance == null){
// GameObject newGO = new GameObject("ScoreManager");
// Sc... |
using System;
using Pipeline.InnerContracts;
namespace Pipeline
{
/// <summary>
/// Base pipeline contract.
/// </summary>
public interface IPipelineBase : IRegistrable
{
/// <summary>
/// Gets registered items count.
/// </summary>
int Count { get; }
... |
using Plugin.Settings;
using Plugin.Settings.Abstractions;
namespace ArguSzem.Models
{
public static class TokenHandlerModel
{
private static ISettings AppSettings => CrossSettings.Current;
public static string Username
{
get => AppSettings.GetValueOrDefault("Username", ""... |
using System;
using System.Collections.Generic;
using System.Text;
namespace PaymentDemo
{
public class FormData
{
public string amountOwed { get; set; }
public string notificationInterval { get; set; }
public string contactMethod { get; set; }
public string phoneNumber { get; ... |
using System;
using Aragas.Core.Data;
namespace ProtocolModern.Data
{
public struct StatisticsEntry : IEquatable<StatisticsEntry>
{
public string StatisticsName;
public VarInt Value;
public override bool Equals(object obj)
{
if (obj == null)
return... |
using FamilyTree.Application.PersonContent.DataHolders.Commands;
using FluentValidation;
namespace FamilyTree.Application.PersonContent.DataHolders.Validators
{
public class CreateDataHolderCommandValidator : AbstractValidator<CreateDataHolderCommand>
{
public CreateDataHolderCommandValidator()
... |
using MARC.HI.EHRS.SVC.Messaging.FHIR.Attributes;
using MARC.HI.EHRS.SVC.Messaging.FHIR.Resources;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
namespace MARC.HI.EHRS.SVC.Messaging.FHIR.... |
//Copyright (c) 2018 Yardi Technology Limited. Http://www.kooboo.com
//All rights reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Kooboo.IndexedDB
{
public static class DateTimeExtension
{
public static long ToInt6... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Autofac;
using OpenCover.Extensions.Strategy;
using OpenCover.Framework.Strategy;
namespace OpenCover.Extensions
{
public class RegisterStrategiesModule : Module
{
protected overri... |
// SPDX-FileCopyrightText: 2008 smdn <smdn@smdn.jp>
// SPDX-License-Identifier: MIT
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace Smdn.Formats.Csv;
[System.Runtime.CompilerServices.TypeForwardedFrom("Smdn, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null")]
public ... |
// This source file is under MIT License (MIT).
// See the LICENSE file in the project root for more information.
namespace Cti.Models
{
/// <summary>
/// Event arguments used by an Event Handler subscribed to Genesys server Events.
/// </summary>
public class MessageEventArgs
{
/// <summa... |
namespace Application.Boundaries.GetTaxaJuros
{
public interface IOutputPort
: IOutputPortStandard<GetTaxaJurosOutput>, IOutputPortNotFound, IOutputPortError
{
}
}
|
namespace OakIdeas.Schema.Core.Organizations.SportsOrganizations
{
/// <summary>
/// Organization: Sports team.
/// </summary>
/// <see cref="http://www.schema.org/SportsTeam"/>
public class SportsTeam : SportsOrganization
{
/// <summary>
/// A person that acts as performing mem... |
// Copyright (C) 2003-2010 Xtensive LLC.
// All rights reserved.
// For conditions of distribution and use, see license.
// Created by: Alex Yakunin
// Created: 2009.04.30
using System;
namespace Xtensive.Orm.Upgrade
{
/// <summary>
/// An attribute providing persistence-related information for the assembly.
... |
using ArmEval.Core.ArmTemplate;
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
namespace ArmEval.Core.UserInputs
{
public class ArmTemplateParameter : IArmTemplateInput
{
public string Name { get; }
public object Value { get; }
... |
using UnityEngine;
namespace MoonBehaviorEditor.Core.Graphs
{
/// <summary>
/// Node port base class
/// </summary>
[System.Serializable]
public abstract class NodePort
{
/// <summary>
/// Port rect
/// </summary>
public Rect rect;
// Main abstract prop... |
using System.Diagnostics;
using Cloud_ShareSync.Core.CloudProvider.BackBlaze.Types;
namespace Cloud_ShareSync.Core.CloudProvider.BackBlaze {
internal partial class B2 {
internal async Task<B2DownloadResponse> DownloadFileID( string fileID, FileInfo outputPath ) {
using Activity? acti... |
using System;
using System.Threading.Tasks;
namespace Routemeister.Routers
{
public class SequentialAsyncRouter : IAsyncRouter
{
private readonly MessageHandlerCreator _messageHandlerCreator;
private readonly MessageRoutes _messageRoutes;
public Action<MessageEnvelope> OnBeforeRouting... |
using System;
using System.Collections.Generic;
using System.Text;
namespace Academy.Services.Providers.Abstract
{
public interface IExporter
{
string GenerateReport(IList<ViewModels.GradeViewModel> grades, string username);
}
}
|
namespace Sustainsys.Saml2.Metadata
{
public class CipherData
{
public string CipherValue { get; set; }
public CipherReference CipherReference { get; set; }
}
}
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace mko.Graphic.WebClient
{
public class GraphicContext
{
LinkedList<string> graphicScriptMethods = new LinkedList<string>();
public void Clear()
{
graphicScriptMethods.Clear();
... |
using Sharpen;
namespace android.content.res
{
/// <summary>
/// Container for an array of values that were retrieved with
/// <see cref="Theme.obtainStyledAttributes(android.util.AttributeSet, int[], int, int)
/// ">Theme.obtainStyledAttributes(android.util.AttributeSet, int[], int, int)</see>
/// or
/// <see ... |
using System.Collections.Generic;
namespace ArdoqFluentModels
{
public interface ISourceModelProvider
{
IEnumerable<object> GetSourceModel();
}
}
|
namespace OpenGLBindings
{
/// <summary>
/// Not used directly.
/// </summary>
public enum PrecisionType
{
/// <summary>
/// Original was GL_LOW_FLOAT = 0x8DF0
/// </summary>
LowFloat = 36336,
/// <summary>
/// Original was GL_MEDIUM_FLOAT = 0x8DF1
... |
using System;
using Swisschain.Sirius.Sdk.Primitives;
namespace Brokerage.Common.Domain.Accounts
{
/// <summary>
/// Natural ID of the account details
/// </summary>
public sealed class AccountDetailsId : IEquatable<AccountDetailsId>
{
public AccountDetailsId(string blockchainId, string ad... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.