text
string
// // System.IO.BufferedStream // // Author: // Matt Kimball (matt@kimball.net) // Ville Palo <vi64pa@kolumbus.fi> // // Copyright (C) 2004 Novell (http://www.novell.com) // // // Copyright (C) 2004 Novell, Inc (http://www.novell.com) // // Permission is hereby granted, free of charge, to any person obtaining // a...
using UnityEngine; using System.Collections; using System.Collections.Generic; [AddComponentMenu("Ferr SuperCube/SuperMesh Combiner")] public class SuperMeshCombiner : MonoBehaviour { public const int MaxVerts = 65534; class Subset { public List<Vector3> mPoints = new List<Vector3>(); public List<Vector3> ...
// This is an open source non-commercial project. Dear PVS-Studio, please check it. // PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com using System; using System.CodeDom; using System.CodeDom.Compiler; using System.Diagnostics; using System.Globalization; using System.IO; using System.Text; u...
using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.Configuration; using System.Runtime.Serialization; namespace DDay.iCal { /// <summary> /// A class that represents an RFC 2445 VALARM component. /// FIXME: move GetOccurrences() logic into a...
/* Copyright (C) 2008-2015, Bit Miracle * http://www.bitmiracle.com * * Copyright (C) 1994-1996, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README file. * */ using System; using System.Collections.Gener...
/*! * Cloudeo SDK C# bindings. * http://www.cloudeo.tv * * Copyright (C) SayMama Ltd 2012 * Released under the BSD license. */ using System; using System.Collections.Generic; using System.Linq; using System.Text; using NUnit.Framework; using CDO; using System.Threading; namespace CDOTest { [TestFixture] ...
/* * Copyright (c) Contributors, http://opensimulator.org/ * See CONTRIBUTORS.TXT for a full list of copyright holders. * * 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 r...
// ----------------------------------------------------------------------- // <copyright file="BestSplitter.cs" company="Sharpkit.Learn"> // Authors: Gilles Louppe <g.louppe@gmail.com> // Peter Prettenhofer <peter.prettenhofer@gmail.com> // Brian Holt <bdholt1@gmail.com> // Noel Dawe <no...
using System; using System.IO; using System.Text; using System.Text.RegularExpressions; using System.Collections; using System.Collections.Generic; using System.Linq; using Moscrif.IDE.Iface.Entities; namespace Moscrif.IDE.Tool { public static class FileUtility { internal readonly static char[] separators = { P...
//------------------------------------------------------------------------------------- // Copyright (c) 2014, Anthilla S.r.l. (http://www.anthilla.com) // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the foll...
namespace Microsoft.Protocols.TestSuites.SharedAdapter { using System; using Microsoft.Protocols.TestSuites.Common; using Microsoft.Protocols.TestTools; /// <summary> /// A class contains methods which capture requirements related with Cell Sub-request. /// </summary> public sealed partial ...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespac...
// LzmaDecoder.cs using System; namespace SevenZip.Compression.LZMA { using RangeCoder; internal class Decoder : ICoder, ISetDecoderProperties // ,System.IO.Stream { class LenDecoder { BitDecoder m_Choice = new BitDecoder(); BitDecoder m_Choice2 = new BitDecoder();...
using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.Linq; using System.Runtime.Serialization; using System.Text; namespace LinqToDB.ServiceModel { using Common; using Extensions; using Mapping; using SqlQuery; ...
#region Copyright // // DotNetNuke® - https://www.dnnsoftware.com // Copyright (c) 2002-2018 // by DotNetNuke Corporation // // 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 restri...
#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.Runtime.InteropServices; using OpenTK.Graphics.OpenGL; namespace Gwen.Renderer.OpenTK { public class OpenTKGL10 : OpenTKBase { [StructLayout(LayoutKind.Sequential, Pack = 1)] public struct Vertex { public short x, y; public float u, v; public byte r, g, b, a; } private...
// 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 osu.Framework.Extensions.Color4Extensions; using osu.Framework.Graphics; using osu.Framework.Graphics.Colour; using osu.Framework.Graphics.Containers...
namespace GraphQLCore.Tests.Execution { using GraphQLCore.Execution; using GraphQLCore.Type; using GraphQLCore.Type.Directives; using NUnit.Framework; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Threading.Tasks; ...
// 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.Collections.Generic; using System.Collections.Immutable; using System.ComponentModel.Composition; usin...
namespace AngleSharp.Network { using AngleSharp.Extensions; using System; using System.Collections.Generic; using System.IO; using System.Net; /// <summary> /// The virtual response class. /// </summary> public class VirtualResponse : IResponse { #region Fields ...
// Copyright (c) 2010-2014 SharpDX - Alexandre Mutel // // 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, modi...
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for details. using System; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.Globalization; using System.Windows.Forms; using ...
using System; using Nequeo.Cryptography.Key.Crypto.Digests; using Nequeo.Cryptography.Key.Crypto.Parameters; using Nequeo.Cryptography.Key.Security; using Nequeo.Cryptography.Key.Utilities; namespace Nequeo.Cryptography.Key.Crypto.Signers { /// <summary> ISO9796-2 - mechanism using a hash function with reco...
// // linq.cs: support for query expressions // // Authors: Marek Safar (marek.safar@gmail.com) // // Dual licensed under the terms of the MIT X11 or GNU GPL // // Copyright 2007-2008 Novell, Inc // Copyright 2011 Xamarin Inc // using System; using System.Collections.Generic; namespace Mono.CSharp.Linq { public clas...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.DirectoryServices; using System.Drawing; using System.Drawing.Drawing2D; using System.IO; using System.Linq; using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; usi...
using Nikse.SubtitleEdit.Core.Common; using System; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; namespace Nikse.SubtitleEdit.Core.SubtitleFormats { public class UnknownSubtitle70 : SubtitleFormat { private static readonly Regex RegexMicroDvdLine = new Reg...
namespace FalloutSnip.UI.Forms { using System; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.Linq; using System.Windows.Forms; using FalloutSnip.Domain.Data.Strings; using FalloutSnip.Domain.Model; using FalloutSnip.Framewor...
namespace crash { partial class FormAskZeroPolynomial { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /...
using Elasticsearch.Net; using System; using System.Collections.Concurrent; using System.IO.Compression; using System.Net; using System.Net.Http; using System.Net.Http.Headers; using System.Text; using System.Threading.Tasks; using static System.Net.DecompressionMethods; namespace Slamby.Common.SlambyConnection { ...
/* Copyright (C) 2014 Omega software d.o.o. This file is part of Rhetos. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (...
using System; using System.Collections; using DatabaseAPI; using UnityEngine; using UnityEngine.UI; using Mirror; using Firebase.Auth; using IgnoranceTransport; namespace Lobby { public class GUI_LobbyDialogue : MonoBehaviour { private const string DefaultServerAddress = "127.0.0.1"; private const ushort Defaul...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Windows.Forms; using DotNetSiemensPLCToolBoxLibrary.Communication.S7_xxx; using DotNetSiemensPLCToolBoxLibrary.General; using Microsoft.Win32; namespace DotNetSiemensPLCToolBoxLibrary.Communication { public partial cl...
#region Disclaimer / License // Copyright (C) 2015, The Duplicati Team // http://www.duplicati.com, info@duplicati.com // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either ...
// // DockObject.cs // // Author: // Lluis Sanchez Gual // // // Copyright (C) 2007 Novell, Inc (http://www.novell.com) // // 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 restri...
/* $Id$ * * OpenMAMA: The open middleware agnostic messaging API * Copyright (C) 2011 NYSE Technologies, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2....
/** * Kopernicus Planetary System Modifier * ==================================== * Created by: BryceSchroeder and Teknoman117 (aka. Nathaniel R. Lewis) * Maintained by: Thomas P., NathanKell and KillAshley * Additional Content by: Gravitasi, aftokino, KCreator, Padishar, Kragrathea, OvenProofMars, zengei, MrHappy...
// // XmlSchemaWriter.cs - DataSet.WriteXmlSchema() support // // Author: // // Atsushi Enomoto <atsushi@ximian.com> // // Original WriteXml/WriteXmlSchema authors are: // Ville Palo, Alan Tam, Lluis Sanchez and Eran Domb. // // // Copyright (C) 2004-05 Novell, Inc (http://www.novell.com) // // Permission is hereby g...
/* * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals. * Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation. * * 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 ...
// <copyright file="Quorum.cs" company="Basho Technologies, Inc."> // Copyright 2011 - OJ Reeves & Jeremiah Peschka // Copyright 2014 - Basho Technologies, Inc. // // This file is provided to you under the Apache License, // Version 2.0 (the "License"); you may not use this file // except in compliance with the Licens...
// 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. #nullable disable using System; using System.Collections.Immutable; using System.Linq; using System.Threading; usi...
/* Copyright 2006 - 2010 Intel Corporation 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 in writin...
/* * 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 ma...
#region License /* * Copyright (c) Lightstreamer Srl * * 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...
//----------------------------------------------------------------------- // <copyright file="Eventsourced.cs" company="Akka.NET Project"> // Copyright (C) 2009-2016 Typesafe Inc. <http://www.typesafe.com> // Copyright (C) 2013-2016 Akka.NET project <https://github.com/akkadotnet/akka.net> // </copyright> //--...
/* 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...
// 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.IO; using System.Xml; using Microsoft.Build.Internal; using Microsoft.Build.Shared; namespace Microsoft.Build.Construction { /// <summa...
// 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. /*============================================================ ** ** ** ** ** ** CustomAttributeBuilder is a helpe...
//----------------------------------------------------------------------- // <copyright file="BootstrapperExeTests.cs" company="SonarSource SA and Microsoft Corporation"> // Copyright (c) SonarSource SA and Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the proje...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. // // Code generated by Microsoft (R) AutoRest Code Generator 0.11.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. ...
//*************************************************** //* This file was generated by tool //* SharpKit //* At: 29/08/2012 03:59:40 p.m. //*************************************************** using SharpKit.JavaScript; namespace Ext.dom { #region AbstractHelper /// <inheritdocs /> /// <summary> /// <p><st...
using System.Collections.Generic; using System.Linq; using Microsoft.Extensions.Logging; using Moq; using NBitcoin; using Stratis.Bitcoin.AsyncWork; using Stratis.Bitcoin.Base; using Stratis.Bitcoin.Base.Deployments; using Stratis.Bitcoin.Configuration; using Stratis.Bitcoin.Configuration.Logging; using Stratis.Bitcoi...
// // FSpotContentDirectory.cs // // Author: // Yavor Georgiev <fealebenpae@gmail.com> // // Copyright (c) 2010 Yavor Georgiev // // 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...
#region Header // ********** // ServUO - World.cs // ********** #endregion #region References using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Reflection; using System.Threading; using CustomsFramework; using Server.Guilds; using Server.Network; #endregion name...
// Copyright (c) Aura development team - Licensed under GNU GPL // For more information, see license file in the main folder using Aura.Data; using Aura.Data.Database; using Aura.Shared.Database; using Aura.Shared.Mabi.Const; using Aura.Shared.Util; using MySql.Data.MySqlClient; using System; using System.Collections...
using OrcaMDF.Core.Engine.Pages; using OrcaMDF.Core.Engine.Records.VariableLengthDataProxies; using OrcaMDF.Framework; using System; using System.Linq; namespace OrcaMDF.Core.Engine.Records.Compression { internal class CompressedRecord { internal CompressedRecordFormat RecordFormat { get; private set; } i...
// // Test_Misc.cs // // Author: // Martin Baulig <martin.baulig@xamarin.com> // // Copyright (c) 2012 Xamarin Inc. (http://www.xamarin.com) // // 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...
// Copyright (c) Microsoft. 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.Linq; using System.Reflection; using System.Reflection.Emit; using Microsoft.CodeAnalysis.CSharp.Symbols; using Microsoft.CodeAnal...
// <copyright file="ZipStorer.cs" company="Jaime Olivares"> // // ZipStorer, by Jaime Olivares // Website: zipstorer.codeplex.com // Version: 2.35 (March 14, 2010) // // Used under the provisions of the Microsoft Public License (Ms-PL). // You may obtain a copy of the License at // // https://zipstorer.codeplex.com...
// Uncomment the following to provide samples for PageResult<T>. Must also add the Microsoft.AspNet.WebApi.OData // package to your project. ////#define Handle_PageResultOfT using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using ...
/* * C# Version Ported by Matt Bettcher and Ian Qvist 2009-2010 * * Original C++ Version Copyright (c) 2007 Eric Jordan * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * Permission i...
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Management.Automation.Internal; using System.Management.Automation.L...
using System; using PlainElastic.Net.Utils; namespace PlainElastic.Net.IndexSettings { /// <summary> /// Allows to configure token filters to be used in custom analyzers. /// </summary> public class TokenFilterSettings : SettingsBase<TokenFilterSettings> { #region Asciifolding ///...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using Microsoft.Msagl.Core.DataStructures; using Microsoft.Msagl.Core.Geometry; using Microsoft.Msagl.Core.Geometry.Curves; using Microsoft.Msagl.Core.GraphAlgorithms; using Microsoft.Msagl.Core.Layout; using Microsoft.Msagl.De...
using System; using System.Collections; using Server.Engines.XmlSpawner2; using Server.Items; using Server.Network; using Server.Targeting; /* ** TeamLMSGump ** ArteGordon ** updated 12/06/04 ** */ namespace Server.Gumps { public class TeamLMSGump : Gump { private const int textentrybackground = 0x24A8...
using System; using System.Collections.Generic; using System.Linq; using Antlr4.Runtime; using Antlr4.Runtime.Misc; using Rubberduck.CodeAnalysis.Inspections.Abstract; using Rubberduck.CodeAnalysis.Inspections.Extensions; using Rubberduck.CodeAnalysis.Inspections.Results; using Rubberduck.Parsing; using Rubberduck.Par...
//----------------------------------------------------------------------- // <copyright file="GraphMatValueSpec.cs" company="Akka.NET Project"> // Copyright (C) 2015-2016 Lightbend Inc. <http://www.lightbend.com> // Copyright (C) 2013-2016 Akka.NET project <https://github.com/akkadotnet/akka.net> // </copyright...
// 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.Concurrent; using System.Collections.Generic; using System.Collections.Immut...
using System; using System.Collections.Generic; using System.Configuration; using System.Linq; using System.Text; using SuperSocket.Common; using SuperSocket.SocketBase; using SuperSocket.SocketBase.Config; using SuperSocket.SocketBase.Logging; using SuperSocket.SocketBase.Provider; using SuperSocket.SocketEngine.Conf...
using UnityEngine; using System; using LuaInterface; using SLua; using System.Collections.Generic; public class Lua_UnityEngine_UI_Text : LuaObject { [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] static public int constructor(IntPtr l) { return 0; } [MonoPInvokeCallbackAttribute(typeof(LuaCSFunction))] ...
using System; using System.Collections; using System.IO; namespace Wox.Infrastructure { public class IniParser { private Hashtable keyPairs = new Hashtable(); private String iniFilePath; private struct SectionPair { public String Section; public String ...
namespace APITest { partial class Form1 { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// ...
// Copyright (c) Microsoft Corporation. All rights reserved // This program uses code hyperlinks available as part of the HyperAddin Visual Studio plug-in. // It is available from http://www.codeplex.com/hyperAddin #define FEATURE_MANAGED_ETW #if !ES_BUILD_STANDALONE && !CORECLR && !PROJECTN #define FEATURE_ACTIVIT...
using System; using System.Threading.Tasks; using Octokit; using Octokit.Tests.Integration; using Xunit; using Octokit.Tests.Integration.Helpers; public class DeploymentStatusClientTests : IDisposable { private readonly IDeploymentsClient _deploymentsClient; private readonly RepositoryContext _context; pr...
// // PluralRules.cs // // Author: // Aaron Bockover <abock@rd.io> // // Copyright 2012 Rdio, Inc. // // 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 with...
/* * This file is subject to the terms and conditions defined in * file 'license.txt', which is part of this source code package. */ using System.Collections.Generic; using System.Linq; using System.Text; using SteamKit2.Internal; namespace SteamKit2 { /// <summary> /// This handler handles all interact...
#region license // This file is part of Vocaluxe. // // Vocaluxe is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Vocaluxe i...
// Copyright 2014 Invex Games http://invexgames.com // 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 agree...
using System.IO; using Moq; using NuGet.Test.Mocks; using Xunit; namespace NuGet.Test { public class XdtTransformTest { [Fact] public void AddPackageWithXdtTransformFile() { // Arrange var mockProjectSystem = new MockProjectSystem(); var mockReposito...
// 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. #nullable enable using System; using System.Collections.Generic; using System.Collections.Immutable; using System....
/* * Copyright 2014, 2015 Dominick Baier, Brock Allen * * 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 applica...
// // Encog(tm) Core v3.2 - .Net Version // http://www.heatonresearch.com/encog/ // // Copyright 2008-2014 Heaton Research, 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 /...
/* **************************************************************************** * * Copyright (c) Microsoft Corporation. * * This source code is subject to terms and conditions of the Apache License, Version 2.0. A * copy of the license can be found in the License.html file at the root of this distribution....
using System; using System.Collections.Generic; using System.Linq; using System.Web.Http; using Nuwa; using WebStack.QA.Test.OData.Common; using Xunit; using System.Net.Http; using Newtonsoft.Json.Linq; using System.Net; using System.Web.Http.OData; using System.Net.Http.Headers; namespace WebStack.QA.Test.OData.Quer...
#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; using System.IO; using System.Web; using Orchard.ContentManagement; using Orchard.ContentManagement.MetaData.Models; using Orchard.MediaLibrary.Factories; using Orchard.MediaLibrary.Models; namespace Orchard.MediaLibrary.Services { public interface IMediaLibraryServ...
//********************************************************* // // Copyright (c) Microsoft. All rights reserved. // This code is licensed under the MIT License (MIT). // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY // IMPLIED WARRANTIES OF FITNESS FOR A PARTICU...
// ReSharper disable All using System.Collections.Generic; using System.Net; using System.Net.Http; using System.Web.Http; using MixERP.Net.Api.Framework; using MixERP.Net.ApplicationState.Cache; using MixERP.Net.Common.Extensions; using MixERP.Net.EntityParser; using MixERP.Net.Framework; using Newtonsoft.Json; using ...
/* * CVS Identifier: * * $Id: DataBlk.java,v 1.7 2001/04/15 14:32:05 grosbois Exp $ * * Interface: DataBlk * * Description: A generic interface to hold 2D blocks of data. * * * * COPYRIGHT: * * This software module was originally developed by Raphaël Grosbois and * Diego Santa Cruz (Swiss Federal Ins...
// 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.Linq; using System.Security.Cryptography.X509Certificates; using Test.Cryptography; using Xunit; names...
// 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. #nullable disable using System; using System.Collections.Generic; using System.Collections.Immutable; using System...
//--------------------------------------------------------------------- // <copyright file="Perspective.cs" company="Microsoft"> // Copyright (c) Microsoft Corporation. All rights reserved. // </copyright> // // @owner [....] // @backupOwner [....] //---------------------------------------------------------...
// 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.IO; using System.Runtime.InteropServices; using System.Text; using System.Threading; using System.Threa...
// Accord Math Library // The Accord.NET Framework // http://accord-framework.net // // Copyright © César Souza, 2009-2015 // cesarsouza at gmail.com // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as publish...
//------------------------------------------------------------------------------ // <copyright file="LinqDataSource.cs" company="Microsoft"> // Copyright (c) Microsoft Corporation. All rights reserved. // </copyright> //------------------------------------------------------------------------------ namespace Syste...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. // Warning: This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if the // code is regenerated. using Sys...
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Symbols; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.CSharp.UnitTests.Emit; using Microsoft....
// 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. #nullable disable using System; using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeFixes; using Micros...
// 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 ma...
// Copyright (c) Microsoft Corporation // 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 // // THIS CODE IS PROVIDED *...