text
stringlengths
1
932k
// c:\program files (x86)\windows kits\10\include\10.0.22000.0\um\dxgiddi.h(370,9) using System; namespace DirectN { [Flags] public enum DXGI_DDI_MULTIPLANE_OVERLAY_YCbCr_FLAGS { DXGI_DDI_MULTIPLANE_OVERLAY_YCbCr_FLAG_NOMINAL_RANGE = 0x00000001, DXGI_DDI_MULTIPLANE_OVERLAY_YCbCr_FLAG_BT709...
using System; namespace KylieBot.Models { public class BotChat { public string chatUser { get; set; } public string chatMessage { get; set; } public string channel { get; set; } public DateTime timeStamp { get; set; } public Guid regardingId { get; set; } public...
@using Logging.Areas.HelpPage.ModelDescriptions @model SimpleTypeModelDescription @Model.Documentation
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("GodotAddinVS")] [assembly: AssemblyDescript...
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // As informações gerais sobre um assembly são controladas por // conjunto de atributos. Altere estes valores de atributo para modificar as informações // associada a um ...
/* * 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...
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information. // Ported from um/xaudio2.h in the Windows SDK for Windows 10.0.20348.0 // Original source is Copyright © Microsoft. All rights reserved. using System.Runtime.InteropServic...
using Microsoft.AspNetCore.Razor.TagHelpers; namespace DNTFrameworkCore.Web.Mvc.TagHelpers.Ajax { [HtmlTargetElement("a", Attributes = ModalLinkAttributeName)] public class ModalLinkTagHelper : TagHelper { private const string Href = "href"; private const string ModalLinkAttributeName = "a...
// ****************************************************************** // Copyright (c) Microsoft. All rights reserved. // This code is licensed under the MIT License (MIT). // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILI...
using ErsatzTV.Core.Domain.Filler; namespace ErsatzTV.Application.Filler; internal static class Mapper { internal static FillerPresetViewModel ProjectToViewModel(FillerPreset fillerPreset) => new( fillerPreset.Id, fillerPreset.Name, fillerPreset.FillerKind, ...
using CMSLibrary.Enums; namespace CMSLibrary.Models { public class TagData { public bool IsDeletable; public int Id; public bool IsNew; public OutcomeType Type; } }
@using SFB.Web.ApplicationCore.Helpers.Enums @using SFB.Web.UI.Helpers.Constants @{ ViewBag.ErrorPrefix = Model.HasError() ? "Error: " : ""; ViewBag.Title = "Dataset download generator"; ViewBag.pageClass = "download-academic-year"; } @if (!string.IsNullOrEmpty(ViewBag.ErrorMessage)) { <div class="gov...
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 GithubOrg { public partial class MainWindow : Form { Controller _controller; ...
using System; using System.IdentityModel; using System.IdentityModel.Configuration; using System.IdentityModel.Protocols.WSTrust; using System.IdentityModel.Tokens; using System.IO; using System.Linq; using System.Security.Claims; using System.Security.Cryptography.X509Certificates; using System.Text; using System.Xml;...
// //------------------------------------------------------------------------------ // // <copyright company="4 Roads LTD"> // // Copyright (c) 4 Roads LTD 2019. All rights reserved. // // </copyright> // //------------------------------------------------------------------------------ #region using FourRoads.Com...
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.Collections.Generic; using System.IO.Packaging; using DocumentFormat.OpenXml.Packaging; using DocumentFormat.OpenXml; using DocumentFormat.O...
@model smartData.Models.User.UserDashboardModel @{ ViewBag.Title = "::Manage Post::"; Layout = "~/Views/Shared/_AdminInnerLayout.cshtml"; } <script src="~/Scripts/Admin/GetPostList.js"></script> <script type="text/javascript"> @functions{ public string TokenHeaderValue() { stri...
// Copyright © 2014 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. using System; using System.Diagnostics; using System.Drawing; using System.IO; using System.Threading.Tasks; using CefSharp.Example; using CefSharp.Exam...
/**************************************************************************** * Copyright (c) 2017 ~ 2019.11 liangxie * https://github.com/thefuntastic/unity-object-pool * https://github.com/prime31/RecyclerKit * https://github.com/prime31 * https://github.com/ihaiucom/ihaiu.PoolManager * https://github.com/ihaiu...
@using System.Web.Http @using System.Web.Http.Controllers @using System.Web.Http.Description @using System.Collections.ObjectModel @using FroalaEditorExample.Areas.HelpPage.Models @model Collection<ApiDescription> @{ ViewBag.Title = "ASP.NET Web API Help Page"; // Group APIs by controller ILookup<HttpCont...
using UnityEngine; namespace Cinemachine.Utility { internal class PositionPredictor { Vector3 m_Position; const float kSmoothingDefault = 10; float mSmoothing = kSmoothingDefault; public float Smoothing { get { return mSmoothing; } set ...
using System; using System.Collections.Generic; namespace Project0.DataAccess.Entities { public partial class OrderInvoice { public int InvoiceLineNumber { get; set; } public int? OrderIndex { get; set; } public int? ItemId { get; set; } public int? ItemQuantity { get; set; } ...
using System; using Abp.Authorization; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace Abp.AspNetCore.Mvc.Authorization { /// <summary> /// This attribute is used on an action of an MVC <see cref="Controller"/> /// to make that action usable only by authorized users. ...
namespace DragonSpark.Model.Selection.Conditions; public interface IConditionAware : IConditionAware<None> {} public interface IConditionAware<in T> { ICondition<T> Condition { get; } }
/// <summary> /// src/Mvc/Mvc.Razor.RuntimeCompilation/test/TestInfrastructure/TestRazorReferenceManager.cs /// </summary> namespace RM.Razor.RuntimeCompilation.Tests { using System; using System.Collections.Generic; using Microsoft.AspNetCore.Mvc.ApplicationParts; using Microsoft.AspNetCore.Mvc.Razor....
using LibGit2Sharp; using System; using System.Linq; namespace GitStory.Core { public class CheckoutBranch : IDisposable { Repository repo; Branch oldBranch; public CheckoutBranch(Repository repo, Branch branch) { this.repo = repo; if (repo.RetrieveStatus(new StatusOptions { IncludeIgnored = false })...
using System; using System.Collections.Generic; using FluentAssertions; using Microsoft.ApplicationInsights; using Microsoft.ApplicationInsights.Channel; using Microsoft.ApplicationInsights.Extensibility; using Microsoft.Extensions.DependencyInjection; using MongoDB.Driver; using NSubstitute; using NUnit.Framework; n...
using IdentityModel.Client; using Microsoft.Extensions.Configuration; using Newtonsoft.Json.Linq; using System; using System.IO; using System.Net.Http; using System.Threading.Tasks; namespace Client { class Program { static async Task Main(string[] args) { var builder = new Configu...
using Esfa.Vacancy.Domain.Validation; using FluentValidation; namespace Esfa.Vacancy.Application.Commands.CreateApprenticeship.Validators { public partial class CreateApprenticeshipRequestValidator { private void ConfigureNumberOfPositions() { const int maxPositionsAllowed = 5000; ...
using System; using System.ComponentModel; #if __MAUI__ using Microsoft.Maui; #else using Xamarin.Forms; #endif #if __MAUI__ namespace SkiaSharp.Views.Maui #else namespace SkiaSharp.Views.Forms #endif { public class SKPaintGLSurfaceEventArgs : EventArgs { #if !__MAUI__ [EditorBrowsable (EditorBrowsableState.Neve...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Runtime.InteropServices; namespace System.Reflection.TypeLoading { ...
using BlazorApp.Wpf.Extensions; using BlazorApp.Wpf.Services; using Blazored.LocalStorage; using Blazored.Modal; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using System; using WeeklyXamarin.Core; using WeeklyXamarin.Core.Helpers; using WeeklyXamarin.Core.Services; namespace Bla...
/** * 类 名:Person * 作 者:花生了什么树 * 创建时间:2021/8/16 12:48:51 * 说 明: * */ using System; using System.Collections.Generic; using System.Text; using Volo.Abp.Domain.Entities; namespace Tiger.Business.Demo { public class Person:Entity<Guid> { public string Name { get; set; } ...
using System; using System.Collections.Generic; using JetBrains.Annotations; using Newtonsoft.Json; using VkNet.Enums.SafetyEnums; using VkNet.Model.Attachments; using VkNet.Model.Keyboard; using VkNet.Model.Template; using VkNet.Utils; using VkNet.Utils.JsonConverter; namespace VkNet.Model.RequestParams { /// <summa...
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; namespace AxeWindowsCLI { internal interface IBrowserAbstraction { void Open(string pathToFile); } }
@model Warzywniak.Order @{ ViewBag.Title = "Details"; } <h2>Details</h2> <div> <hr /> <h4>Order</h4> <dl class="dl-horizontal"> <dt> @Html.DisplayNameFor(model => model.OrdareDate) </dt> <dd> @Html.DisplayFor(model => model.OrdareDate) </dd> ...
// ***************************************************************************** // 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...
namespace _08.Military_Elite.Interfaces { public interface IRepair { string Name { get; } int HoursWorked { get; } } }
//--------------------------------------------------------------------- // <copyright file="RequestUriCustomizationIntegrationTests.cs" company="Microsoft"> // Copyright (C) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. // </copyright> //-----------------...
using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Linq; using System.Threading.Tasks; using System.Windows; namespace Paercebal.MoodAndMusic { /// <summary> /// Interaction logic for App.xaml /// </summary> public partial class App : Applicatio...
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Linq.Expressions; namespace SgMeetup { public static class ObjectFactoryBuilder { public static Expression<Func<IReadOnlyDictionary<string,string>, object>> Create<T>() where T: clas...
using System.Collections.Generic; using Lamar.Codegen.Variables; using Lamar.Testing.Scanning.Conventions; using Shouldly; using StructureMap.Testing.Widget; using Xunit; namespace Lamar.Testing.Codegen { public class VariableTests { [Fact] public void override_the_name() { ...
#if UNITY_LUMIN using UnityEngine.Rendering; using UnityEditor.Build.Reporting; using UnityEngine.Scripting.APIUpdating; namespace UnityEditor.MARS.Build { [MovedFrom("Unity.MARS.Build")] public class ElectiveExtensionsConfigurationLumin : ElectiveExtensions { public override void OnPreprocessBuil...
using System; using System.Diagnostics.CodeAnalysis; using System.Runtime.InteropServices; using System.Text; using starshipxac.Shell.Interop.KnownFolder; namespace starshipxac.Shell.Interop { /// <summary> /// Shell Functions /// </summary> /// <remarks> /// https://msdn.microsoft.com/en-...
/* Copyright 2021 Enjin Pte. Ltd. * * 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 t...
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.KinesisAnalytics")] [assembly: Asse...
using Refit; using System.Net.Http; using System.Threading.Tasks; namespace FootballStats.Services.Interfaces { [Headers(Config.ApiKey, Config.ApiHost)] public interface ITrophiesFootballApi { [Get("/trophies/player/{playerId}")] Task<HttpResponseMessage> GetTrophiesByPlayerId(int playerId...
using Esri.ArcGISRuntime.Controls; using Esri.ArcGISRuntime.Layers; using Esri.ArcGISRuntime.Symbology; using System; using System.Threading.Tasks; using Windows.UI; using Windows.UI.Popups; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; namespace ArcGISRuntime.Samples.Phone.Samples { /// <summary> /// This...
using AutoMapper; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ep.CursoMvc.Application.AutoMapper { public class AutoMapperConfig { public static void RegisterMappings() { Mapper.Initialize(x=> ...
@model VstsDemoBuilder.Models.LoginModel @{ ViewBag.Title = "Azure DevOps Demo Generator"; } <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <link rel="styles...
using System; using System.Collections.Generic; using System.Extensions; using System.Runtime.CompilerServices; using Sudoku.Data; using Sudoku.DocComments; using Sudoku.Drawing; using Sudoku.Models; using Sudoku.Solving.Manual.Extensions; using Sudoku.Techniques; using static System.Numerics.BitOperations; using stat...
// Copyright (c) 2022 TrakHound Inc., All Rights Reserved. // This file is subject to the terms and conditions defined in // file 'LICENSE', which is part of this source code package. using System.Text.RegularExpressions; using System.Xml; namespace MTConnect { internal static class Namespaces { inte...
using System.Threading.Tasks; namespace Orleans.Indexing.Tests.MultiInterface { public interface IPersonGrain { Task<string> GetName(); Task SetName(string value); Task<int> GetAge(); Task SetAge(int value); // For testing Task InitializeState(); Task W...
using Polly; using System.Net.Http; namespace Bit.Http.Contracts { public delegate IAsyncPolicy<HttpResponseMessage> IPollyHttpResponseMessagePolicyFactory(HttpRequestMessage requestMessage); }
using System.Collections; using System.Collections.Generic; using UnityEngine; public class WateringAnimationSound : MonoBehaviour { public void PlaySFX() { SoundHandler.Instance.Play_SFX(SoundHandler.SFX.WATER); } }
using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Threading.Tasks; using Newtonsoft.Json; namespace CloudStack.Net { public class InternalLoadBalancerElementResponse { /// <summary> /// the id of the internal load balancer element /// </s...
using Microsoft.AspNetCore.Components; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace WebSampleApp { [Route("Foo")] public class MyController { public MyController() { } } }
using System; using System.Collections.Generic; using System.Linq; using Foundation; using UIKit; namespace PhotoHandoff { 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 class from "Ap...
using System.Collections.Generic; using Microsoft.AspNetCore.Html; using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.AspNetCore.Mvc.ViewFeatures; using Microsoft.Extensions.DependencyInjection; namespace MCS.Web.Framework.AccessControlHelper { public static class HtmlHelperExtension { static H...
// <auto-generated /> using System; using BlueSun.Data; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; #nullable disable ...
using System; using System.Management.Automation; using System.Threading; using Microsoft.SharePoint.Client; using OfficeDevPnP.Core.Utilities; using SharePointPnP.PowerShell.Commands.Base; using Resources = SharePointPnP.PowerShell.Commands.Properties.Resources; using SharePointPnP.PowerShell.CmdletHelpAttributes; n...
/* * Copyright 2022 MASES s.r.l. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
namespace P01_HospitalDatabase.Data.Models { using System.Collections.Generic; public class Medicament { public Medicament() { this.Prescriptions = new HashSet<PatientMedicament>(); } public Medicament(string name) : base() { th...
using Microsoft.AspNetCore.Mvc; using System; namespace Project.Infrastructure.Extensions { public static class ControllerExtensions { public static string GetControllerName(this Type controllerType) => controllerType.Name.Replace(nameof(Controller), string.Empty); } }
// -------------------------------------------------------------------------- // <copyright file="GatewayApiTemplateResource.cs" company="Microsoft"> // Copyright (c) Microsoft Corporation. All rights reserved. // </copyright> // -------------------------------------------------------------------------- using ...
using System; using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.Extensions.Localization; using OrchardCore.Workflows.Abstractions.Models; using OrchardCore.Workflows.Activities; using OrchardCore.Workflows.Helpers; using OrchardCore.Workflows.Models; using OrchardCore.Workflows.Services; ...
using System.Collections.Generic; using Binance.Net.Objects; using CryptoExchange.Net; namespace Binance.Net.Converters { public class OrderRejectReasonConverter: BaseConverter<OrderRejectReason> { public OrderRejectReasonConverter(): this(true) { } public OrderRejectReasonConverter(bool quote...
//#define PATCH_CALL_REGISTRY using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Reflection.Emit; using System.Runtime.CompilerServices; using System.Xml; using HarmonyLib; using RimWorld; using UnityEngine; using Verse; using ...
// 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, modify, merge, publish, // distribute, sublicense, and/or sell...
// This file is part of Silk.NET. // // You may modify and distribute Silk.NET under the terms // of the MIT license. See the LICENSE file for details. using System; #pragma warning disable 1591 namespace Silk.NET.OpenGLES { public enum TextureMinFilter { Nearest = 0x2600, Linear = 0x2601, ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TrackConverter.Lib.Mathematic.Geodesy.Models { /// <summary> /// параметры СК ПЗ-90.11 /// Источник: http://structure.mil.ru/files/pz-90.pdf /// </summary> public class PZ90 : BaseModel { //...
// ********************************* // Message from Original Author: // // 2008 Jose Menendez Poo // Please give me credit if you use this code. It's all I ask. // Contact me for more info: menendezpoo@gmail.com // ********************************* // // Original project from http://ribbon.codeplex.com/ // Continue t...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; public class StartUp { public static void Main() { List<Box<string>> listOfBoxes = new List<Box<string>>(); int n = int.Parse(Console.ReadLine()); for (int i = 0; i < n...
using Blade.Entity; using Blade.Entity.BaseManage; using Blade.Util; using System.Collections.Generic; using System.Threading.Tasks; namespace Blade.IService.BaseManage { public interface IBaseUserService { Task<PageResult<BaseUserDTO>> GetDataListAsync(PageInput<BaseUsersInputDTO> input); Tas...
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _05.Book_Library { class Program { class Book { public string Title { get; set; } public string Author { get; set; }...
using Microsoft.Azure.Functions.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection; [assembly: FunctionsStartup(typeof(NotifySlackOfWebMeeting.Apis.Startup))] namespace NotifySlackOfWebMeeting.Apis { /// <summary> /// スタートアップクラス /// </summary> public class Startup : Functio...
using System; using System.Net; namespace LoggingKata { /// <summary> /// Parses a POI file to locate all the Taco Bells /// </summary> public class TacoParser { readonly ILog logger = new TacoLogger(); public ITrackable Parse(string line) { //logger.Lo...
namespace DB_project { partial class Update_Product { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> ///...
using Microsoft.Practices.Prism.PubSubEvents; using System; using System.Windows; using System.Windows.Controls; using System.Windows.Input; using System.Windows.Media; using VRCAT.DataModel.Event; using VRCAT.Infrastructure; using VRCAT.WrapperBridge; namespace VRCAT.PlaySceneModule { /// <summary> /// PlayS...
using System.Runtime.InteropServices; namespace Vanara.PInvoke { public static partial class UxTheme { /// <summary>Must be called on a window to use the <c>UpdatePanningFeedback</c> method for boundary feedback.</summary> /// <param name="hwnd">A handle to the window that will have boundary feedback on it.</pa...
using commercetools.Sdk.Domain; namespace commercetools.Sdk.Client { public abstract class CreateTokenForEmailVerificationCommand<T> : Command<Token<T>> { public CreateTokenForEmailVerificationCommand(string id, int timeToLiveMinutes, int? version = null) { this.Id = id; ...
@if (Settings.Features.GoogleAnalytics) { <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'...
using Vortice; using Vortice.Direct3D11; using Vortice.DXGI; using System; using System.Collections.Generic; using System.Diagnostics; using System.Runtime.CompilerServices; using System.Threading; using Vortice.Mathematics; using Vortice.Direct3D11.Debug; using VorticeDXGI = Vortice.DXGI.DXGI; using VorticeD3D11 = Vo...
namespace HexaEngine.XAudio { using HexaEngine.Core.Audio; using HexaEngine.Core.IO; using Vortice.Multimedia; using Vortice.XAudio2; public class SourceVoice : ISourceVoice { private bool disposedValue; public IXAudio2SourceVoice Audio2SourceVoice { get; private set; } ...
/* * 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 ...
#pragma warning disable S1128 // Unused "using" should be removed global using Amg.Build; global using Amg.Extensions; global using Amg.GetOpt; global using NUnit.Framework; global using DescriptionAttribute = System.ComponentModel.DescriptionAttribute; #pragma warning restore S1128 // Unused "using" should be removed
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net.Http; using System.Text; using System.Threading.Tasks; namespace CacheCow.Client { public interface IHttpMessageSerializerAsync { Task SerializeAsync(HttpResponseMessage response, Stream stream); Task SerializeA...
#pragma checksum "C:\Users\Acer\OneDrive\Área de Trabalho\AulasFaculdade\LiguagemCSHARP\AulasFacul\Aulas\TelaDeLogin-MVC\Views\Login\Logado.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5432845661b2ec387cc1529a0529248a2bec9e97" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCor...
namespace AutoRest.TypeScript.SuperAgent.Model { public class ModelProperty { public string Name { get; set; } public string TypeName { get; set; } public bool IsRequired { get; set; } public bool IsNullable { get; set; } } }
using System.Xml.Linq; namespace SoftwareKobo.UniversalToolkit.Utils.AppxManifest { public sealed class DefaultTileManifest : ManifestBase { internal DefaultTileManifest(XElement defaultTileElement) : base(defaultTileElement) { } public string Square310x310Logo => this["Square...
using ConfigMaker.Mvvm.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Input; namespace ConfigMaker.Mvvm.ViewModels { public class ItemViewModel: ViewModelBase<ItemModel> { double _fo...
@using SitecoreCognitiveServices.Feature.IntelligentMedia.Statics @model string @{ ViewBag.Title = Translator.Text("IdentifyGroup.Title"); Layout = "~/Areas/SitecoreCognitiveServices/Views/Common/CognitiveLayout.cshtml"; } <link rel="stylesheet" href="/Areas/SitecoreCognitiveServices/Assets/css/SitecoreCogni...
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="BillboardTextVisual3D.cs" company="Helix Toolkit"> // Copyright (c) 2014 Helix Toolkit contributors // </copyright> // <summary> // Defines the type of material. // </summary>...
#if WAMPCRA using System; using WampSharp.V2.Core.Contracts; namespace WampSharp.V2.Authentication { internal class WampCraPendingClientDetails { private const string UTCFormat = "yyyy-MM-ddTHH:mm:ssK"; public string AuthenticationRole { get; set; } public string AuthenticationProvide...
using System; // Token: 0x020004B4 RID: 1204 public enum RagdollDumpType { // Token: 0x0400291F RID: 10527 None, // Token: 0x04002920 RID: 10528 Incinerator, // Token: 0x04002921 RID: 10529 TranqCase, // Token: 0x04002922 RID: 10530 WoodChipper }
 // <copyright file="BankAccountMap.g.cs" company="MIT"> // Copyright (c) 2019 MIT // </copyright> // 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...
using System; using System.Collections.Generic; using Pathfinding.Util; using Pathfinding.Voxels; using UnityEngine; namespace Pathfinding.Recast { internal class RecastMeshGatherer { public RecastMeshGatherer(global::UnityEngine.Bounds bounds, int terrainSampleSize, global::UnityEngine.LayerMask mask, global::Sy...
using Amazon.JSII.Runtime.Deputy; #pragma warning disable CS0672,CS0809,CS1591 namespace aws { [JsiiInterface(nativeType: typeof(IWafv2WebAclRuleStatementNotStatementStatementOrStatementStatementOrStatementStatementXssMatchStatementFieldToMatchSingleQueryArgument), fullyQualifiedName: "aws.Wafv2WebAclRuleStatemen...
namespace DotNetInterceptTester.My_System.Net.WebResponse { public class GetResponseStream_System_Net_WebResponse { public static bool _GetResponseStream_System_Net_WebResponse( ) { //Parameters //ReturnType/Value System.IO.Stream returnVal_Real = null; System.IO.Stream returnVal_Intercepted = null; //...
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace AspNetIdentity.WebApi.Models { public class RoleReturnModel { public string Url { get; set; } public string Id { get; set; } public string Name { get; set; } } }