new vis
This commit is contained in:
BIN
cs2_chs/01.jpg
Normal file
BIN
cs2_chs/01.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 30 KiB |
BIN
cs2_chs/02.png
Normal file
BIN
cs2_chs/02.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.1 KiB |
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<configuration>
|
<configuration>
|
||||||
<startup>
|
<startup>
|
||||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/>
|
||||||
</startup>
|
</startup>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|||||||
@@ -4,6 +4,16 @@
|
|||||||
xmlns:local="clr-namespace:cs2_chs"
|
xmlns:local="clr-namespace:cs2_chs"
|
||||||
StartupUri="MainWindow.xaml">
|
StartupUri="MainWindow.xaml">
|
||||||
<Application.Resources>
|
<Application.Resources>
|
||||||
|
<Style x:Key="tranBtn" TargetType="Button">
|
||||||
|
<Setter Property="Control.Template">
|
||||||
|
<Setter.Value>
|
||||||
|
<ControlTemplate TargetType="{x:Type Button}">
|
||||||
|
<Border x:Name="Chrome" BorderBrush="{TemplateBinding BorderBrush}" Background="{TemplateBinding Background}" SnapsToDevicePixels="true">
|
||||||
|
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
|
||||||
|
</Border>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Setter.Value>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
</Application.Resources>
|
</Application.Resources>
|
||||||
</Application>
|
</Application>
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ using System.Data;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Windows;
|
using System.Windows;
|
||||||
|
using System.Windows.Media;
|
||||||
|
|
||||||
namespace cs2_chs
|
namespace cs2_chs
|
||||||
{
|
{
|
||||||
@@ -14,4 +15,81 @@ namespace cs2_chs
|
|||||||
public partial class App : Application
|
public partial class App : Application
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class ImageButton : System.Windows.Controls.Button
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 图片
|
||||||
|
/// </summary>
|
||||||
|
public static readonly DependencyProperty ImageProperty = DependencyProperty.Register("Image", typeof(ImageSource), typeof(ImageButton),
|
||||||
|
new PropertyMetadata(null));
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 图片的宽度
|
||||||
|
/// </summary>
|
||||||
|
public static readonly DependencyProperty ImageWidthProperty = DependencyProperty.Register("ImageWidth", typeof(double), typeof(ImageButton),
|
||||||
|
new PropertyMetadata(double.NaN));
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 图片的高度
|
||||||
|
/// </summary>
|
||||||
|
public static readonly DependencyProperty ImageHeightProperty = DependencyProperty.Register("ImageHeight", typeof(double), typeof(ImageButton),
|
||||||
|
new PropertyMetadata(double.NaN));
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 构造函数
|
||||||
|
/// </summary>
|
||||||
|
static ImageButton()
|
||||||
|
{
|
||||||
|
DefaultStyleKeyProperty.OverrideMetadata(typeof(ImageButton),
|
||||||
|
new System.Windows.FrameworkPropertyMetadata(typeof(ImageButton)));
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 设置图片
|
||||||
|
/// </summary>
|
||||||
|
public ImageSource Image
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return GetValue(ImageProperty) as ImageSource;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
SetValue(ImageProperty, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 图片宽度(属性)
|
||||||
|
/// </summary>
|
||||||
|
public double ImageWidth
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return (double)GetValue(ImageWidthProperty);
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
SetValue(ImageWidthProperty, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 图片高度(属性)
|
||||||
|
/// </summary>
|
||||||
|
public double ImageHeight
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return (double)GetValue(ImageHeightProperty);
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
SetValue(ImageHeightProperty, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
336
cs2_chs/DllTools.cs
Normal file
336
cs2_chs/DllTools.cs
Normal file
@@ -0,0 +1,336 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
using System.IO;
|
||||||
|
using Microsoft.IdentityModel.Logging;
|
||||||
|
|
||||||
|
namespace cs2_chs
|
||||||
|
{
|
||||||
|
class DllTools
|
||||||
|
{
|
||||||
|
[DllImport("kernel32.dll")]
|
||||||
|
public static extern uint GetLastError();
|
||||||
|
|
||||||
|
[DllImport("kernel32.dll", EntryPoint = "LoadLibraryEx", SetLastError = true)]
|
||||||
|
public static extern int LoadLibraryEx(string lpFileName, IntPtr hReservedNull, LoadLibraryFlags dwFlags);
|
||||||
|
|
||||||
|
[DllImport("Kernel32", EntryPoint = "GetProcAddress", SetLastError = true)]
|
||||||
|
public static extern int GetProcAddress(int handle, string funcname);
|
||||||
|
|
||||||
|
[DllImport("Kernel32", EntryPoint = "FreeLibrary", SetLastError = true)]
|
||||||
|
private static extern int FreeLibrary(int handle);
|
||||||
|
|
||||||
|
[DllImport("kernel32.dll", EntryPoint = "GetModuleHandleA", SetLastError = true)]
|
||||||
|
public static extern int GetModuleHandleA(string lpFileName);
|
||||||
|
public static Delegate GetFunctionAddress(int dllModule, string functionName, Type t)
|
||||||
|
{
|
||||||
|
int address = GetProcAddress(dllModule, functionName);
|
||||||
|
if (address == 0)
|
||||||
|
return null;
|
||||||
|
else
|
||||||
|
return Marshal.GetDelegateForFunctionPointer(new IntPtr(address), t);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static Delegate GetDelegateFromIntPtr(IntPtr address, Type t)
|
||||||
|
{
|
||||||
|
if (address == IntPtr.Zero)
|
||||||
|
return null;
|
||||||
|
else
|
||||||
|
return Marshal.GetDelegateForFunctionPointer(address, t);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static Delegate GetDelegateFromIntPtr(int address, Type t)
|
||||||
|
{
|
||||||
|
if (address == 0)
|
||||||
|
return null;
|
||||||
|
else
|
||||||
|
return Marshal.GetDelegateForFunctionPointer(new IntPtr(address), t);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static int LoadSDK(string lpFileName)
|
||||||
|
{
|
||||||
|
if (File.Exists(lpFileName))
|
||||||
|
{
|
||||||
|
var hReservedNull = IntPtr.Zero;
|
||||||
|
var dwFlags = LoadLibraryFlags.LOAD_WITH_ALTERED_SEARCH_PATH;
|
||||||
|
|
||||||
|
var result = LoadLibraryEx(lpFileName, hReservedNull, dwFlags);
|
||||||
|
|
||||||
|
var errCode = GetLastError();
|
||||||
|
LogHelper.LogInformation($"LoadSDK Result:{result}, ErrorCode: {errCode}");
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int ReleaseSDK(int handle)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (handle > 0)
|
||||||
|
{
|
||||||
|
LogHelper.LogInformation($"FreeLibrary handle:{handle}");
|
||||||
|
var result = FreeLibrary(handle);
|
||||||
|
var errCode = GetLastError();
|
||||||
|
LogHelper.LogInformation($"FreeLibrary Result:{result}, ErrorCode: {errCode}");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
//LogHelper.LogException<Exception>(ex);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum LoadLibraryFlags : uint
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// DONT_RESOLVE_DLL_REFERENCES
|
||||||
|
/// </summary>
|
||||||
|
DONT_RESOLVE_DLL_REFERENCES = 0x00000001,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// LOAD_IGNORE_CODE_AUTHZ_LEVEL
|
||||||
|
/// </summary>
|
||||||
|
LOAD_IGNORE_CODE_AUTHZ_LEVEL = 0x00000010,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// LOAD_LIBRARY_AS_DATAFILE
|
||||||
|
/// </summary>
|
||||||
|
LOAD_LIBRARY_AS_DATAFILE = 0x00000002,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// LOAD_LIBRARY_AS_DATAFILE_EXCLUSIVE
|
||||||
|
/// </summary>
|
||||||
|
LOAD_LIBRARY_AS_DATAFILE_EXCLUSIVE = 0x00000040,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// LOAD_LIBRARY_AS_IMAGE_RESOURCE
|
||||||
|
/// </summary>
|
||||||
|
LOAD_LIBRARY_AS_IMAGE_RESOURCE = 0x00000020,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// LOAD_LIBRARY_SEARCH_APPLICATION_DIR
|
||||||
|
/// </summary>
|
||||||
|
LOAD_LIBRARY_SEARCH_APPLICATION_DIR = 0x00000200,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// LOAD_LIBRARY_SEARCH_DEFAULT_DIRS
|
||||||
|
/// </summary>
|
||||||
|
LOAD_LIBRARY_SEARCH_DEFAULT_DIRS = 0x00001000,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR
|
||||||
|
/// </summary>
|
||||||
|
LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR = 0x00000100,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// LOAD_LIBRARY_SEARCH_SYSTEM32
|
||||||
|
/// </summary>
|
||||||
|
LOAD_LIBRARY_SEARCH_SYSTEM32 = 0x00000800,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// LOAD_LIBRARY_SEARCH_USER_DIRS
|
||||||
|
/// </summary>
|
||||||
|
LOAD_LIBRARY_SEARCH_USER_DIRS = 0x00000400,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// LOAD_WITH_ALTERED_SEARCH_PATH
|
||||||
|
/// </summary>
|
||||||
|
LOAD_WITH_ALTERED_SEARCH_PATH = 0x00000008
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public abstract class MProcess
|
||||||
|
{
|
||||||
|
[DllImport("kernel32", EntryPoint = "GetModuleHandleW")]
|
||||||
|
public static extern int GetModuleHandle(string lpModuleName);
|
||||||
|
[DllImport("kernel32.dll", EntryPoint = "ReadProcessMemory")]
|
||||||
|
public static extern int _MemoryReadByteSet(int hProcess, int lpBaseAddress, byte[] lpBuffer, int nSize, int lpNumberOfBytesRead);
|
||||||
|
|
||||||
|
[DllImport("kernel32.dll", EntryPoint = "ReadProcessMemory")]
|
||||||
|
public static extern int _MemoryReadInt32(int hProcess, int lpBaseAddress, ref int lpBuffer, int nSize, int lpNumberOfBytesRead);
|
||||||
|
|
||||||
|
[DllImport("kernel32.dll", EntryPoint = "WriteProcessMemory")]
|
||||||
|
public static extern int _MemoryWriteByteSet(int hProcess, int lpBaseAddress, byte[] lpBuffer, int nSize, int lpNumberOfBytesWritten);
|
||||||
|
|
||||||
|
[DllImport("kernel32.dll", EntryPoint = "WriteProcessMemory")]
|
||||||
|
public static extern int _MemoryWriteInt32(int hProcess, int lpBaseAddress, ref int lpBuffer, int nSize, int lpNumberOfBytesWritten);
|
||||||
|
|
||||||
|
[DllImport("kernel32.dll", EntryPoint = "GetCurrentProcess")]
|
||||||
|
public static extern int GetCurrentProcess();
|
||||||
|
|
||||||
|
[DllImport("kernel32.dll", EntryPoint = "OpenProcess")]
|
||||||
|
public static extern int OpenProcess(int dwDesiredAccess, int bInheritHandle, int dwProcessId);
|
||||||
|
|
||||||
|
[DllImport("kernel32.dll", EntryPoint = "CloseHandle")]
|
||||||
|
public static extern int CloseHandle(int hObject);
|
||||||
|
|
||||||
|
[DllImport("kernel32.dll", EntryPoint = "RtlMoveMemory")]
|
||||||
|
public static extern int _CopyMemory_ByteSet_Float(ref float item, ref byte source, int length);
|
||||||
|
|
||||||
|
|
||||||
|
const int PROCESS_POWER_MAX = 2035711;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 读内存整数型
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="pID">进程ID</param>
|
||||||
|
/// <param name="bAddress">0x地址</param>
|
||||||
|
/// <returns>0失败</returns>
|
||||||
|
public static int ReadMemoryInt32(int pID, int bAddress)
|
||||||
|
{
|
||||||
|
int num = 0;
|
||||||
|
int handle = GetProcessHandle(pID);
|
||||||
|
int num3 = MProcess._MemoryReadInt32(handle, bAddress, ref num, 4, 0);
|
||||||
|
MProcess.CloseHandle(handle);
|
||||||
|
if (num3 == 0)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return num;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 写内存整数型
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="pID">进程ID</param>
|
||||||
|
/// <param name="bAddress">0x地址</param>
|
||||||
|
/// <param name="value">写入值</param>
|
||||||
|
/// <returns>false失败 true成功</returns>
|
||||||
|
public static bool WriteMemoryInt32(int pID, int bAddress, int value)
|
||||||
|
{
|
||||||
|
int handle = GetProcessHandle(pID);
|
||||||
|
int num2 = MProcess._MemoryWriteInt32(handle, bAddress, ref value, 4, 0);
|
||||||
|
MProcess.CloseHandle(handle);
|
||||||
|
return num2 != 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 读内存小数型
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="pID">进程ID</param>
|
||||||
|
/// <param name="bAddress">0x地址</param>
|
||||||
|
/// <returns>0失败</returns>
|
||||||
|
public static float ReadMemoryFloat(int pID, int bAddress)
|
||||||
|
{
|
||||||
|
//byte[] array = MProcess.GetVoidByteSet(4);
|
||||||
|
byte[] array = new byte[4];//不取空字节集也可以正确转换成单精度小数型
|
||||||
|
int handle = GetProcessHandle(pID);
|
||||||
|
int temp = MProcess._MemoryReadByteSet(handle, bAddress, array, 4, 0);
|
||||||
|
if (temp == 0)
|
||||||
|
{
|
||||||
|
return 0f;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return MProcess.GetFloatFromByteSet(array, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 写内存小数型
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="pID">进程ID</param>
|
||||||
|
/// <param name="bAddress">0x地址</param>
|
||||||
|
/// <param name="value">写入数据</param>
|
||||||
|
/// <returns>false失败</returns>
|
||||||
|
public static bool WriteMemoryFloat(int pID, int bAddress, float value)
|
||||||
|
{
|
||||||
|
//byte[] byteSet = MProcess.GetByteSet(value);
|
||||||
|
byte[] byteSet = BitConverter.GetBytes(value);//https://msdn.microsoft.com/en-us/library/yhwsaf3w
|
||||||
|
//byte[] byteSet = Encoding.GetEncoding("gb2312").GetBytes(value.ToString());
|
||||||
|
return MProcess.WriteMemoryByteSet(pID, bAddress, byteSet, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 写内存字节集
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="pID">进程ID</param>
|
||||||
|
/// <param name="bAddress">0x地址</param>
|
||||||
|
/// <param name="value">字节数据</param>
|
||||||
|
/// <param name="length">写入长度 0代表字节数据的长度</param>
|
||||||
|
/// <returns>false失败</returns>
|
||||||
|
private static bool WriteMemoryByteSet(int pID, int bAddress, byte[] value, int length = 0)
|
||||||
|
{
|
||||||
|
int handle = MProcess.GetProcessHandle(pID);
|
||||||
|
int nSize = (length == 0) ? value.Length : length;
|
||||||
|
int tmp = MProcess._MemoryWriteByteSet(handle, bAddress, value, nSize, 0);//byte[]属于引用类型 引用类型不用ref也是以传址方式进行运算
|
||||||
|
//MProcess.CloseHandle(pID);
|
||||||
|
return tmp != 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 取空白字节集
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="num"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static byte[] GetVoidByteSet(int num)
|
||||||
|
{
|
||||||
|
if (num <= 0)
|
||||||
|
{
|
||||||
|
num = 1;
|
||||||
|
}
|
||||||
|
string text = "";
|
||||||
|
for (int i = 0; i < num; i++)
|
||||||
|
{
|
||||||
|
text += "0";
|
||||||
|
}
|
||||||
|
return Encoding.UTF8.GetBytes(text);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 取进程句柄
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="pID">进程ID</param>
|
||||||
|
/// <returns>进程句柄</returns>
|
||||||
|
public static int GetProcessHandle(int pID)
|
||||||
|
{
|
||||||
|
if (pID == -1)
|
||||||
|
{
|
||||||
|
return MProcess.GetCurrentProcess();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return MProcess.OpenProcess(PROCESS_POWER_MAX, 0, pID);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 字节集转小数型
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="sourceValue">字节集</param>
|
||||||
|
/// <param name="index">索引</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static float GetFloatFromByteSet(byte[] sourceValue, int index)
|
||||||
|
{
|
||||||
|
float result = 0f;
|
||||||
|
MProcess._CopyMemory_ByteSet_Float(ref result, ref sourceValue[index], 4);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 获取字节集
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="data">需要转换到字节集的数据</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static byte[] GetByteSet(float data)
|
||||||
|
{
|
||||||
|
return Encoding.UTF8.GetBytes(data.ToString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
13
cs2_chs/HotKeyWinApi.cs
Normal file
13
cs2_chs/HotKeyWinApi.cs
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Interop;
|
||||||
|
|
||||||
|
namespace cs2_chs
|
||||||
|
{
|
||||||
|
class HotKeyWinApi
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,8 +5,57 @@
|
|||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
xmlns:local="clr-namespace:cs2_chs"
|
xmlns:local="clr-namespace:cs2_chs"
|
||||||
mc:Ignorable="d"
|
mc:Ignorable="d"
|
||||||
Title="MainWindow" Height="150" Width="450" ResizeMode="NoResize">
|
Title="MainWindow" Height="200" Width="600" ResizeMode="NoResize" Visibility="Visible">
|
||||||
<Grid Loaded="Grid_Loaded">
|
<Grid Loaded="Grid_Loaded" MouseUp="Grid_MouseUp" MouseDown="Grid_MouseDown" Unloaded="Grid_Unloaded">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="74*"/>
|
||||||
|
<ColumnDefinition Width="223*"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Grid.Background>
|
||||||
|
<ImageBrush ImageSource="01.jpg"/>
|
||||||
|
</Grid.Background>
|
||||||
|
<TextBox x:Name="TEXT_INPUT" HorizontalAlignment="Left" Height="120" Margin="10,10,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="574" AcceptsReturn="True" Grid.ColumnSpan="2">
|
||||||
|
<TextBox.BorderBrush>
|
||||||
|
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
||||||
|
<GradientStop Color="#FFFFB700" Offset="0.027"/>
|
||||||
|
<GradientStop Color="#FFFF9A9A" Offset="1"/>
|
||||||
|
</LinearGradientBrush>
|
||||||
|
</TextBox.BorderBrush>
|
||||||
|
<TextBox.Background>
|
||||||
|
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
||||||
|
<GradientStop Color="Black" Offset="0"/>
|
||||||
|
<GradientStop Color="#FFD8FFFB" Offset="1"/>
|
||||||
|
<GradientStop Color="#99FFFFFF" Offset="0"/>
|
||||||
|
</LinearGradientBrush>
|
||||||
|
</TextBox.Background>
|
||||||
|
</TextBox>
|
||||||
|
<Button x:Name="apply" Content="Apply" HorizontalAlignment="Left" Height="25" Margin="348.267,135,0,0" VerticalAlignment="Top" Width="88" Click="Button_Click" Grid.Column="1">
|
||||||
|
<Button.Background>
|
||||||
|
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
||||||
|
<GradientStop Color="Red" Offset="0"/>
|
||||||
|
<GradientStop Color="#7FFFBBBB" Offset="0.99"/>
|
||||||
|
</LinearGradientBrush>
|
||||||
|
</Button.Background>
|
||||||
|
</Button>
|
||||||
|
<ProgressBar x:Name="PBS" HorizontalAlignment="Left" Height="25" Margin="103,135,0,0" VerticalAlignment="Top" Width="388" Visibility="Collapsed" Grid.ColumnSpan="2"/>
|
||||||
|
<Button Content="Show Japanese" HorizontalAlignment="Left" Margin="10,135,0,0" VerticalAlignment="Top" Width="88" Height="25" Click="Button_Click_1">
|
||||||
|
<Button.Background>
|
||||||
|
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
||||||
|
<GradientStop Color="#FFFFEE00" Offset="0"/>
|
||||||
|
<GradientStop Color="#8CFFFAB3" Offset="1"/>
|
||||||
|
</LinearGradientBrush>
|
||||||
|
</Button.Background>
|
||||||
|
</Button>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
<Window.Resources>
|
||||||
|
<RoutedUICommand x:Key="ShowMainWindow" Text="ShowMainWindow" />
|
||||||
|
</Window.Resources>
|
||||||
|
<Window.InputBindings>
|
||||||
|
<KeyBinding Modifiers="Alt" Key="N" Command="{StaticResource ShowMainWindow}"/>
|
||||||
|
</Window.InputBindings>
|
||||||
|
<Window.CommandBindings>
|
||||||
|
<CommandBinding Command="{StaticResource ShowMainWindow}"
|
||||||
|
CanExecute="CommandBinding_ShowMainWindow_CanExecute"
|
||||||
|
Executed="CommandBinding_ShowMainWindow_Executed"/>
|
||||||
|
</Window.CommandBindings>
|
||||||
</Window>
|
</Window>
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ using System.Collections.Generic;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using System.Threading;
|
||||||
using System.Windows;
|
using System.Windows;
|
||||||
using System.Windows.Controls;
|
using System.Windows.Controls;
|
||||||
using System.Windows.Data;
|
using System.Windows.Data;
|
||||||
@@ -14,6 +15,9 @@ using System.Windows.Navigation;
|
|||||||
using System.Windows.Shapes;
|
using System.Windows.Shapes;
|
||||||
|
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
using System.Windows.Threading;
|
||||||
|
using System.Messaging;
|
||||||
|
|
||||||
namespace cs2_chs
|
namespace cs2_chs
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -34,59 +38,158 @@ namespace cs2_chs
|
|||||||
}
|
}
|
||||||
public partial class MainWindow : Window
|
public partial class MainWindow : Window
|
||||||
{
|
{
|
||||||
public static string UTF8To16(string str)
|
[DllImport("Kernel32.dll", EntryPoint = "WaitForSingleObject")]
|
||||||
|
public extern static int WaitForSingleObject(uint hHandle, uint dwMilliseconds);
|
||||||
|
|
||||||
|
[DllImport("cs2_patch.dll", EntryPoint = "InjectSelfTo")]
|
||||||
|
public static extern uint pStart(string path);
|
||||||
|
|
||||||
|
[DllImport("cs2_patch.dll", EntryPoint = "CreateDataExport")]
|
||||||
|
public static extern void CreateData([MarshalAs(UnmanagedType.LPWStr)] string path);
|
||||||
|
[DllImport("Kernel32.dll", EntryPoint = "TerminateProcess")]
|
||||||
|
public static extern bool TerminateProcess(uint hThread, uint dwExitCode);
|
||||||
|
[DllImport("Kernel32.dll", EntryPoint = "OpenProcess")]
|
||||||
|
public static extern uint OpenProcess(uint dwDesiredAccess, bool bInheritHandle, uint dwProcessId);
|
||||||
|
|
||||||
|
int pSaveProcess = 0;
|
||||||
|
uint hThread = 0;
|
||||||
|
int ms_str = 0;
|
||||||
|
int ptPid = 0;
|
||||||
|
|
||||||
|
private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e)
|
||||||
{
|
{
|
||||||
string res;
|
if(this.Visibility != Visibility.Visible){
|
||||||
int i, len, c;
|
e.Cancel = false;
|
||||||
int char2, char3;
|
return;
|
||||||
res = "";
|
}
|
||||||
len = str.Length;
|
MessageBoxResult res = MessageBox.Show("是否要不关闭游戏,而只隐藏文本编辑窗口?", "确认", MessageBoxButton.YesNoCancel);
|
||||||
i = 0;
|
if (res == MessageBoxResult.Yes)
|
||||||
while (i < len)
|
|
||||||
{
|
{
|
||||||
c = Convert.ToByte(str[i++]);
|
e.Cancel = true;
|
||||||
switch (c >> 4)
|
this.ShowInTaskbar = false;
|
||||||
|
this.Visibility = Visibility.Hidden;
|
||||||
|
}
|
||||||
|
else if (res == MessageBoxResult.No)
|
||||||
|
{
|
||||||
|
e.Cancel = false;
|
||||||
|
unsafe
|
||||||
{
|
{
|
||||||
case 0:
|
|
||||||
case 1:
|
TerminateProcess(OpenProcess(0x0001, false, *(uint*)ptPid), 1);
|
||||||
case 2:
|
|
||||||
case 3:
|
|
||||||
case 4:
|
|
||||||
case 5:
|
|
||||||
case 6:
|
|
||||||
case 7:
|
|
||||||
// 0xxxxxxx
|
|
||||||
res += str.CharAt(i - 1);
|
|
||||||
break;
|
|
||||||
case 12:
|
|
||||||
case 13:
|
|
||||||
// 110x xxxx 10xx xxxx
|
|
||||||
char2 = Convert.ToByte(str[i++]);
|
|
||||||
res += Convert.ToChar(((c & 0x1F) << 6) | (char2 & 0x3F));
|
|
||||||
break;
|
|
||||||
case 14:
|
|
||||||
// 1110 xxxx 10xx xxxx 10xx xxxx
|
|
||||||
char2 = Convert.ToByte(str[i++]);
|
|
||||||
char3 = Convert.ToByte(str[i++]);
|
|
||||||
res += Convert.ToChar(((c & 0x0F) << 12) |
|
|
||||||
((char2 & 0x3F) << 6) |
|
|
||||||
((char3 & 0x3F) << 0));
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return res;
|
else if (res == MessageBoxResult.Cancel)
|
||||||
|
{
|
||||||
|
e.Cancel = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
[DllImport("cs2_patch.dll", EntryPoint = "InjectSelfTo")]
|
|
||||||
public static extern int pStart(string path);
|
|
||||||
public MainWindow()
|
public MainWindow()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
this.Closing += Window_Closing;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Grid_Loaded(object sender, RoutedEventArgs e)
|
private void Grid_Loaded(object sender, RoutedEventArgs e)
|
||||||
{
|
{
|
||||||
// char[] a = { '1', '2', '3' };
|
// char[] a = { '1', '2', '3' };
|
||||||
pStart("cs2.exe");
|
hThread = pStart("cs2.exe");
|
||||||
|
int hMod = DllTools.GetModuleHandleA("cs2_patch.dll");
|
||||||
|
if (hMod == 0)
|
||||||
|
MessageBox.Show("error");
|
||||||
|
pSaveProcess = DllTools.GetProcAddress(hMod, "saveProcess");
|
||||||
|
ms_str = DllTools.GetProcAddress(hMod, "ms_str");
|
||||||
|
ptPid = DllTools.GetProcAddress(hMod, "tPid");
|
||||||
|
Thread threadExit = new Thread(delegate ()
|
||||||
|
{
|
||||||
|
WaitForSingleObject(hThread, 0xFFFFFFFF);
|
||||||
|
this.Dispatcher.Invoke(DispatcherPriority.Normal, (ThreadStart)delegate ()
|
||||||
|
{
|
||||||
|
this.Close();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
threadExit.Start();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Grid_MouseUp(object sender, MouseButtonEventArgs e)
|
||||||
|
{
|
||||||
|
// this.Visibility = Visibility.Visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Grid_MouseDown(object sender, MouseButtonEventArgs e)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private void Button_Click(object sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
Thread thread1 = new Thread(delegate ()
|
||||||
|
{
|
||||||
|
string LocalS = "";
|
||||||
|
this.Dispatcher.Invoke(DispatcherPriority.Normal, (ThreadStart)delegate ()
|
||||||
|
{
|
||||||
|
LocalS = TEXT_INPUT.Text;
|
||||||
|
});
|
||||||
|
CreateData(LocalS);
|
||||||
|
});
|
||||||
|
thread1.Start();
|
||||||
|
|
||||||
|
Thread thread2 = new Thread(delegate ()
|
||||||
|
{
|
||||||
|
unsafe
|
||||||
|
{
|
||||||
|
double* saveProcess = (double*)pSaveProcess;
|
||||||
|
this.Dispatcher.Invoke(DispatcherPriority.Normal, (ThreadStart)delegate ()
|
||||||
|
{
|
||||||
|
apply.IsEnabled = false;
|
||||||
|
PBS.Visibility = Visibility.Visible;
|
||||||
|
});
|
||||||
|
|
||||||
|
while (*saveProcess != 1)
|
||||||
|
{
|
||||||
|
this.Dispatcher.Invoke(DispatcherPriority.Normal, (ThreadStart)delegate ()
|
||||||
|
{
|
||||||
|
PBS.Value = ((*saveProcess) * 100.0);
|
||||||
|
});
|
||||||
|
Thread.Sleep(15);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.Dispatcher.Invoke(DispatcherPriority.Normal, (ThreadStart)delegate ()
|
||||||
|
{
|
||||||
|
apply.IsEnabled = true;
|
||||||
|
PBS.Visibility = Visibility.Collapsed;
|
||||||
|
});
|
||||||
|
*saveProcess = 0;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
thread2.Start();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Button_Click_1(object sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
unsafe
|
||||||
|
{
|
||||||
|
char* pms_str = (char*)ms_str;
|
||||||
|
|
||||||
|
string MsStr = new string(pms_str);
|
||||||
|
TEXT_INPUT.Text = MsStr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void CommandBinding_ShowMainWindow_CanExecute(object sender, CanExecuteRoutedEventArgs e)
|
||||||
|
{
|
||||||
|
e.CanExecute = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void CommandBinding_ShowMainWindow_Executed(object sender, ExecutedRoutedEventArgs e)
|
||||||
|
{
|
||||||
|
//this.Visibility = Visibility.Visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Grid_Unloaded(object sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
// MessageBox.Show("");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
<OutputType>WinExe</OutputType>
|
<OutputType>WinExe</OutputType>
|
||||||
<RootNamespace>cs2_chs</RootNamespace>
|
<RootNamespace>cs2_chs</RootNamespace>
|
||||||
<AssemblyName>cs2_chs</AssemblyName>
|
<AssemblyName>cs2_chs</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
@@ -25,6 +25,7 @@
|
|||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
@@ -34,6 +35,7 @@
|
|||||||
<DefineConstants>TRACE</DefineConstants>
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
||||||
<Prefer32Bit>true</Prefer32Bit>
|
<Prefer32Bit>true</Prefer32Bit>
|
||||||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
||||||
<OutputPath>..\Release\</OutputPath>
|
<OutputPath>..\Release\</OutputPath>
|
||||||
@@ -56,10 +59,16 @@
|
|||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
||||||
<Prefer32Bit>true</Prefer32Bit>
|
<Prefer32Bit>true</Prefer32Bit>
|
||||||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Reference Include="Microsoft.IdentityModel.Logging, Version=5.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\Microsoft.IdentityModel.Logging.5.6.0\lib\net461\Microsoft.IdentityModel.Logging.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Data" />
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Drawing" />
|
||||||
|
<Reference Include="System.Messaging" />
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
<Reference Include="Microsoft.CSharp" />
|
<Reference Include="Microsoft.CSharp" />
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
@@ -69,6 +78,9 @@
|
|||||||
<Reference Include="System.Xaml">
|
<Reference Include="System.Xaml">
|
||||||
<RequiredTargetFramework>4.0</RequiredTargetFramework>
|
<RequiredTargetFramework>4.0</RequiredTargetFramework>
|
||||||
</Reference>
|
</Reference>
|
||||||
|
<Reference Include="WebDriver, Version=3.141.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\Selenium.WebDriver.3.141.0\lib\net45\WebDriver.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
<Reference Include="WindowsBase" />
|
<Reference Include="WindowsBase" />
|
||||||
<Reference Include="PresentationCore" />
|
<Reference Include="PresentationCore" />
|
||||||
<Reference Include="PresentationFramework" />
|
<Reference Include="PresentationFramework" />
|
||||||
@@ -86,6 +98,8 @@
|
|||||||
<DependentUpon>App.xaml</DependentUpon>
|
<DependentUpon>App.xaml</DependentUpon>
|
||||||
<SubType>Code</SubType>
|
<SubType>Code</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="DllTools.cs" />
|
||||||
|
<Compile Include="HotKeyWinApi.cs" />
|
||||||
<Compile Include="MainWindow.xaml.cs">
|
<Compile Include="MainWindow.xaml.cs">
|
||||||
<DependentUpon>MainWindow.xaml</DependentUpon>
|
<DependentUpon>MainWindow.xaml</DependentUpon>
|
||||||
<SubType>Code</SubType>
|
<SubType>Code</SubType>
|
||||||
@@ -109,6 +123,7 @@
|
|||||||
<Generator>ResXFileCodeGenerator</Generator>
|
<Generator>ResXFileCodeGenerator</Generator>
|
||||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<None Include="packages.config" />
|
||||||
<None Include="Properties\Settings.settings">
|
<None Include="Properties\Settings.settings">
|
||||||
<Generator>SettingsSingleFileGenerator</Generator>
|
<Generator>SettingsSingleFileGenerator</Generator>
|
||||||
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||||
@@ -117,5 +132,11 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="App.config" />
|
<None Include="App.config" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="01.jpg" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="02.png" />
|
||||||
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
</Project>
|
</Project>
|
||||||
BIN
cs2_chs/obj/x86/Release/App.baml
Normal file
BIN
cs2_chs/obj/x86/Release/App.baml
Normal file
Binary file not shown.
@@ -1,4 +1,4 @@
|
|||||||
#pragma checksum "..\..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "47A6ABC1F984D2628127870792B9669A74CD780D5065D75E37A3BA999C302E28"
|
#pragma checksum "..\..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "5EE4FB2D2750083127A6673A009D2DA762ABE28530F3E6BD3C3684F089511E6B"
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// 此代码由工具生成。
|
// 此代码由工具生成。
|
||||||
@@ -40,16 +40,29 @@ namespace cs2_chs {
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class App : System.Windows.Application {
|
public partial class App : System.Windows.Application {
|
||||||
|
|
||||||
|
private bool _contentLoaded;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// InitializeComponent
|
/// InitializeComponent
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||||
public void InitializeComponent() {
|
public void InitializeComponent() {
|
||||||
|
if (_contentLoaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_contentLoaded = true;
|
||||||
|
|
||||||
#line 5 "..\..\..\App.xaml"
|
#line 5 "..\..\..\App.xaml"
|
||||||
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
|
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
System.Uri resourceLocater = new System.Uri("/cs2_chs;component/app.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line 1 "..\..\..\App.xaml"
|
||||||
|
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#pragma checksum "..\..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "47A6ABC1F984D2628127870792B9669A74CD780D5065D75E37A3BA999C302E28"
|
#pragma checksum "..\..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "5EE4FB2D2750083127A6673A009D2DA762ABE28530F3E6BD3C3684F089511E6B"
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// 此代码由工具生成。
|
// 此代码由工具生成。
|
||||||
@@ -40,16 +40,29 @@ namespace cs2_chs {
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class App : System.Windows.Application {
|
public partial class App : System.Windows.Application {
|
||||||
|
|
||||||
|
private bool _contentLoaded;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// InitializeComponent
|
/// InitializeComponent
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||||
public void InitializeComponent() {
|
public void InitializeComponent() {
|
||||||
|
if (_contentLoaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_contentLoaded = true;
|
||||||
|
|
||||||
#line 5 "..\..\..\App.xaml"
|
#line 5 "..\..\..\App.xaml"
|
||||||
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
|
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
System.Uri resourceLocater = new System.Uri("/cs2_chs;component/app.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line 1 "..\..\..\App.xaml"
|
||||||
|
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,4 +1,4 @@
|
|||||||
#pragma checksum "..\..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F057702BFD72AA7AA90C434C7677C42026F3D87C5998DD20BC1D7D0294BF503E"
|
#pragma checksum "..\..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E3D04CBB8BE3DB8E4A418B3C7A26D391DBAAA15D174ECA9E0843C2E91A401268"
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// 此代码由工具生成。
|
// 此代码由工具生成。
|
||||||
@@ -40,6 +40,30 @@ namespace cs2_chs {
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||||
|
|
||||||
|
|
||||||
|
#line 17 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.TextBox TEXT_INPUT;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 32 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Button apply;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 40 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.ProgressBar PBS;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
private bool _contentLoaded;
|
private bool _contentLoaded;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -75,6 +99,61 @@ namespace cs2_chs {
|
|||||||
#line 9 "..\..\..\MainWindow.xaml"
|
#line 9 "..\..\..\MainWindow.xaml"
|
||||||
((System.Windows.Controls.Grid)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Grid_Loaded);
|
((System.Windows.Controls.Grid)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Grid_Loaded);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 9 "..\..\..\MainWindow.xaml"
|
||||||
|
((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseUp);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 9 "..\..\..\MainWindow.xaml"
|
||||||
|
((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 9 "..\..\..\MainWindow.xaml"
|
||||||
|
((System.Windows.Controls.Grid)(target)).Unloaded += new System.Windows.RoutedEventHandler(this.Grid_Unloaded);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
return;
|
||||||
|
case 2:
|
||||||
|
this.TEXT_INPUT = ((System.Windows.Controls.TextBox)(target));
|
||||||
|
return;
|
||||||
|
case 3:
|
||||||
|
this.apply = ((System.Windows.Controls.Button)(target));
|
||||||
|
|
||||||
|
#line 32 "..\..\..\MainWindow.xaml"
|
||||||
|
this.apply.Click += new System.Windows.RoutedEventHandler(this.Button_Click);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
return;
|
||||||
|
case 4:
|
||||||
|
this.PBS = ((System.Windows.Controls.ProgressBar)(target));
|
||||||
|
return;
|
||||||
|
case 5:
|
||||||
|
|
||||||
|
#line 41 "..\..\..\MainWindow.xaml"
|
||||||
|
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_1);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
return;
|
||||||
|
case 6:
|
||||||
|
|
||||||
|
#line 58 "..\..\..\MainWindow.xaml"
|
||||||
|
((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_ShowMainWindow_CanExecute);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 59 "..\..\..\MainWindow.xaml"
|
||||||
|
((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_ShowMainWindow_Executed);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#pragma checksum "..\..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F057702BFD72AA7AA90C434C7677C42026F3D87C5998DD20BC1D7D0294BF503E"
|
#pragma checksum "..\..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E3D04CBB8BE3DB8E4A418B3C7A26D391DBAAA15D174ECA9E0843C2E91A401268"
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// 此代码由工具生成。
|
// 此代码由工具生成。
|
||||||
@@ -40,6 +40,30 @@ namespace cs2_chs {
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||||
|
|
||||||
|
|
||||||
|
#line 17 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.TextBox TEXT_INPUT;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 32 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Button apply;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 40 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.ProgressBar PBS;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
private bool _contentLoaded;
|
private bool _contentLoaded;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -75,6 +99,61 @@ namespace cs2_chs {
|
|||||||
#line 9 "..\..\..\MainWindow.xaml"
|
#line 9 "..\..\..\MainWindow.xaml"
|
||||||
((System.Windows.Controls.Grid)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Grid_Loaded);
|
((System.Windows.Controls.Grid)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Grid_Loaded);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 9 "..\..\..\MainWindow.xaml"
|
||||||
|
((System.Windows.Controls.Grid)(target)).MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseUp);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 9 "..\..\..\MainWindow.xaml"
|
||||||
|
((System.Windows.Controls.Grid)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Grid_MouseDown);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 9 "..\..\..\MainWindow.xaml"
|
||||||
|
((System.Windows.Controls.Grid)(target)).Unloaded += new System.Windows.RoutedEventHandler(this.Grid_Unloaded);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
return;
|
||||||
|
case 2:
|
||||||
|
this.TEXT_INPUT = ((System.Windows.Controls.TextBox)(target));
|
||||||
|
return;
|
||||||
|
case 3:
|
||||||
|
this.apply = ((System.Windows.Controls.Button)(target));
|
||||||
|
|
||||||
|
#line 32 "..\..\..\MainWindow.xaml"
|
||||||
|
this.apply.Click += new System.Windows.RoutedEventHandler(this.Button_Click);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
return;
|
||||||
|
case 4:
|
||||||
|
this.PBS = ((System.Windows.Controls.ProgressBar)(target));
|
||||||
|
return;
|
||||||
|
case 5:
|
||||||
|
|
||||||
|
#line 41 "..\..\..\MainWindow.xaml"
|
||||||
|
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_1);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
return;
|
||||||
|
case 6:
|
||||||
|
|
||||||
|
#line 58 "..\..\..\MainWindow.xaml"
|
||||||
|
((System.Windows.Input.CommandBinding)(target)).CanExecute += new System.Windows.Input.CanExecuteRoutedEventHandler(this.CommandBinding_ShowMainWindow_CanExecute);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 59 "..\..\..\MainWindow.xaml"
|
||||||
|
((System.Windows.Input.CommandBinding)(target)).Executed += new System.Windows.Input.ExecutedRoutedEventHandler(this.CommandBinding_ShowMainWindow_Executed);
|
||||||
|
|
||||||
#line default
|
#line default
|
||||||
#line hidden
|
#line hidden
|
||||||
return;
|
return;
|
||||||
|
|||||||
75
cs2_chs/obj/x86/Release/Moving.g.i.cs
Normal file
75
cs2_chs/obj/x86/Release/Moving.g.i.cs
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
#pragma checksum "..\..\..\Moving.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "5E8F2458CC9F4390AACF38269F78C2F2C6AB0646E3267B2430E1F2E557CC34AE"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
using cs2_chs;
|
||||||
|
|
||||||
|
|
||||||
|
namespace cs2_chs {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Moving
|
||||||
|
/// </summary>
|
||||||
|
public partial class Moving : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||||
|
|
||||||
|
private bool _contentLoaded;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
if (_contentLoaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_contentLoaded = true;
|
||||||
|
System.Uri resourceLocater = new System.Uri("/cs2_chs;component/moving.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line 1 "..\..\..\Moving.xaml"
|
||||||
|
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||||
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||||
|
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||||
|
this._contentLoaded = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Binary file not shown.
0
cs2_chs/obj/x86/Release/cs2_chs.csproj.CopyComplete
Normal file
0
cs2_chs/obj/x86/Release/cs2_chs.csproj.CopyComplete
Normal file
@@ -15,3 +15,5 @@ D:\VSProject\cs2\cs2_united\Release\cs2_chs.exe.config
|
|||||||
D:\VSProject\cs2\cs2_united\Release\cs2_chs.exe
|
D:\VSProject\cs2\cs2_united\Release\cs2_chs.exe
|
||||||
D:\VSProject\cs2\cs2_united\Release\cs2_chs.pdb
|
D:\VSProject\cs2\cs2_united\Release\cs2_chs.pdb
|
||||||
D:\VSProject\cs2\cs2_united\cs2_chs\obj\x86\Release\cs2_chs.csprojAssemblyReference.cache
|
D:\VSProject\cs2\cs2_united\cs2_chs\obj\x86\Release\cs2_chs.csprojAssemblyReference.cache
|
||||||
|
D:\VSProject\cs2\cs2_united\cs2_chs\obj\x86\Release\cs2_chs.csproj.CopyComplete
|
||||||
|
D:\VSProject\cs2\cs2_united\cs2_chs\obj\x86\Release\App.baml
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
13
cs2_chs/obj/x86/Release/cs2_chs_Content.g.i.cs
Normal file
13
cs2_chs/obj/x86/Release/cs2_chs_Content.g.i.cs
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("02.png")]
|
||||||
|
|
||||||
|
|
||||||
@@ -12,8 +12,8 @@ TRACE
|
|||||||
D:\VSProject\cs2\cs2_united\cs2_chs\App.xaml
|
D:\VSProject\cs2\cs2_united\cs2_chs\App.xaml
|
||||||
11151548125
|
11151548125
|
||||||
|
|
||||||
5-2017746502
|
7-1981105727
|
||||||
13152784993
|
171117567902
|
||||||
MainWindow.xaml;
|
MainWindow.xaml;
|
||||||
|
|
||||||
False
|
False
|
||||||
|
|||||||
@@ -12,9 +12,9 @@ TRACE
|
|||||||
D:\VSProject\cs2\cs2_united\cs2_chs\App.xaml
|
D:\VSProject\cs2\cs2_united\cs2_chs\App.xaml
|
||||||
11151548125
|
11151548125
|
||||||
|
|
||||||
6-1262306213
|
81203939881
|
||||||
13152784993
|
171117567902
|
||||||
MainWindow.xaml;
|
MainWindow.xaml;
|
||||||
|
|
||||||
False
|
True
|
||||||
|
|
||||||
|
|||||||
4
cs2_chs/obj/x86/Release/cs2_chs_MarkupCompile.i.lref
Normal file
4
cs2_chs/obj/x86/Release/cs2_chs_MarkupCompile.i.lref
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
|
||||||
|
FD:\VSProject\cs2\cs2_united\cs2_chs\App.xaml;;
|
||||||
|
FD:\VSProject\cs2\cs2_united\cs2_chs\MainWindow.xaml;;
|
||||||
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
|
|
||||||
|
FD:\VSProject\cs2\cs2_united\cs2_chs\App.xaml;;
|
||||||
FD:\VSProject\cs2\cs2_united\cs2_chs\MainWindow.xaml;;
|
FD:\VSProject\cs2\cs2_united\cs2_chs\MainWindow.xaml;;
|
||||||
|
|
||||||
|
|||||||
5
cs2_chs/packages.config
Normal file
5
cs2_chs/packages.config
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<packages>
|
||||||
|
<package id="Microsoft.IdentityModel.Logging" version="5.6.0" targetFramework="net472" />
|
||||||
|
<package id="Selenium.WebDriver" version="3.141.0" targetFramework="net472" />
|
||||||
|
</packages>
|
||||||
@@ -6,9 +6,10 @@ extern HMODULE hMod;
|
|||||||
extern "C" extern DLLAPI wchar_t ms_str[3096];
|
extern "C" extern DLLAPI wchar_t ms_str[3096];
|
||||||
extern "C" extern DLLAPI int nID;
|
extern "C" extern DLLAPI int nID;
|
||||||
|
|
||||||
|
extern "C" extern DLLAPI DWORD tPid;
|
||||||
|
|
||||||
MicroData* Index = NULL;
|
extern MicroData* Index;
|
||||||
MicroBinary* Data = NULL;
|
extern MicroBinary* Data;
|
||||||
|
|
||||||
signed int (*sub_5FC1C0)() = (signed int(*)(void))0x5FC1C0;//real function point
|
signed int (*sub_5FC1C0)() = (signed int(*)(void))0x5FC1C0;//real function point
|
||||||
HMODULE SelfHandle = NULL;
|
HMODULE SelfHandle = NULL;
|
||||||
@@ -48,7 +49,7 @@ HANDLE InjectSelfTo(LPCSTR inptr)
|
|||||||
NULL, NULL, FALSE,
|
NULL, NULL, FALSE,
|
||||||
CREATE_SUSPENDED, NULL, NULL, &si, info);
|
CREATE_SUSPENDED, NULL, NULL, &si, info);
|
||||||
if (!hF) {
|
if (!hF) {
|
||||||
MessageBoxA(0, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD><EFBFBD>", inptr, MB_ICONERROR);
|
MessageBoxA(0, "Failed to create Process!", inptr, MB_ICONERROR);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
// MessageBox(0, L"1", L"", 0);
|
// MessageBox(0, L"1", L"", 0);
|
||||||
@@ -61,8 +62,8 @@ HANDLE InjectSelfTo(LPCSTR inptr)
|
|||||||
MessageBoxA(0, "", "", 0);
|
MessageBoxA(0, "", "", 0);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
currentThread = info->hThread;
|
currentThread = info->hThread;
|
||||||
|
tPid = info->dwProcessId;
|
||||||
} while (0);
|
} while (0);
|
||||||
|
|
||||||
HANDLE hHookStart = CreateRemoteThread(info->hProcess, NULL, 0, (LPTHREAD_START_ROUTINE)
|
HANDLE hHookStart = CreateRemoteThread(info->hProcess, NULL, 0, (LPTHREAD_START_ROUTINE)
|
||||||
@@ -70,7 +71,7 @@ HANDLE InjectSelfTo(LPCSTR inptr)
|
|||||||
|
|
||||||
if (!hHookStart)
|
if (!hHookStart)
|
||||||
{
|
{
|
||||||
MessageBox(0, L"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Զ<EFBFBD><EFBFBD><EFBFBD>߳<EFBFBD>(IAT HOOK)", L"<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", MB_ICONERROR);
|
MessageBox(0, L"Failed to create remote thread", L"error", MB_ICONERROR);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
WaitForSingleObject(hHookStart, 0);
|
WaitForSingleObject(hHookStart, 0);
|
||||||
@@ -93,9 +94,9 @@ signed int Fakesub_5FC1C0()
|
|||||||
mov dword ptr[lesi], esi
|
mov dword ptr[lesi], esi
|
||||||
mov dword ptr[ledi], edi
|
mov dword ptr[ledi], edi
|
||||||
}
|
}
|
||||||
// SetWindowTextW(m_hWnd, L"<22><><EFBFBD><EFBFBD>hook");
|
// SetWindowTextW(m_hWnd, L"<22><><EFBFBD><EFBFBD>hook");
|
||||||
((int(*)(DWORD))::GetProcAddress(SelfHandle, "TranSplete"))(lecx);
|
((int(*)(DWORD))::GetProcAddress(SelfHandle, "TranSplete"))(lecx);
|
||||||
// SetWindowTextW(m_hWnd, L"hook<6F><6B><EFBFBD><EFBFBD>");
|
// SetWindowTextW(m_hWnd, L"hook<6F><6B><EFBFBD><EFBFBD>");
|
||||||
__asm {
|
__asm {
|
||||||
mov eax, dword ptr[leax]
|
mov eax, dword ptr[leax]
|
||||||
mov ebx, dword ptr[lebx]
|
mov ebx, dword ptr[lebx]
|
||||||
|
|||||||
@@ -5,20 +5,24 @@
|
|||||||
extern MicroData* Index;
|
extern MicroData* Index;
|
||||||
extern MicroBinary* Data;
|
extern MicroBinary* Data;
|
||||||
|
|
||||||
|
extern "C" extern DLLAPI double saveProcess;
|
||||||
extern HMODULE hMod;
|
extern HMODULE hMod;
|
||||||
extern "C" extern DLLAPI wchar_t ms_str[3096];
|
extern "C" extern DLLAPI wchar_t ms_str[3096];
|
||||||
extern "C" extern DLLAPI int nID;
|
extern "C" extern DLLAPI int nID;
|
||||||
|
extern "C" extern DLLAPI DWORD tPid;
|
||||||
|
|
||||||
void CreateDataExport(WCHAR data[])
|
|
||||||
|
DWORD CreateDataExportEx(LPCWSTR data)
|
||||||
{
|
{
|
||||||
|
// MessageBoxW(0, data,L"",0);
|
||||||
WCHAR sjp[3096];
|
WCHAR sjp[3096];
|
||||||
WCHAR scn[3096];
|
WCHAR scn[3096];
|
||||||
|
|
||||||
int lasger = GEtLargestID();
|
int lasger = GEtLargestID();
|
||||||
|
|
||||||
if (nID - lasger > 2) {
|
if (nID - lasger > 2) {
|
||||||
MessageBox(0, L"ID<EFBFBD><EFBFBD>ֵ<EFBFBD>ƺ<EFBFBD><EFBFBD><EFBFBD>̫<EFBFBD>Ծ<EFBFBD><EFBFBD><EFBFBD>\n<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ε<EFBFBD><EFBFBD>ж<EFBFBD><EFBFBD><EFBFBD>", L"<EFBFBD><EFBFBD><EFBFBD><EFBFBD>", MB_ICONERROR);
|
MessageBox(0, L"the ID value seems not available,therefore this action has been refused", L"error", MB_ICONERROR);
|
||||||
return;
|
return 1;
|
||||||
}
|
}
|
||||||
if (!GetDataByID(nID - 1, sjp, scn)) {
|
if (!GetDataByID(nID - 1, sjp, scn)) {
|
||||||
|
|
||||||
@@ -26,74 +30,110 @@ void CreateDataExport(WCHAR data[])
|
|||||||
WCHAR abv[16];
|
WCHAR abv[16];
|
||||||
_itow_s(nID - 1, abv, 10);
|
_itow_s(nID - 1, abv, 10);
|
||||||
wstring str;
|
wstring str;
|
||||||
str += L"Ӧ<EFBFBD>ã<EFBFBD>ID:";
|
str += L"Apply ID:";
|
||||||
str += abv;
|
str += abv;
|
||||||
str += L"\n";
|
str += L"\n";
|
||||||
str += ms_str;
|
str += ms_str;
|
||||||
str += L"->";
|
str += L"->";
|
||||||
str += data;
|
str += data;
|
||||||
MessageBoxW(NULL, str.c_str(), L"<EFBFBD>ɹ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ӷ<EFBFBD><EFBFBD><EFBFBD>", MB_ICONINFORMATION);
|
MessageBoxW(NULL, str.c_str(), L"successed to add rule", MB_ICONINFORMATION);
|
||||||
return;
|
return 1;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
wstring nString = L"<EFBFBD>÷<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀ<EFBFBD>Ѿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڣ<EFBFBD><EFBFBD>Ƿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD>滻<EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n(<28><><EFBFBD><EFBFBD><EFBFBD>ع<EFBFBD><D8B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĵ<EFBFBD><C4B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ܣ<EFBFBD><DCA3><EFBFBD><EFBFBD>ܻ<EFBFBD>ռ<EFBFBD><D5BC>һЩʱ<D0A9><CAB1>)\n";
|
wstring nString = L"This rule is already exist,do you want still to replace it?(according to your PC,it may take you a short time)\n";
|
||||||
WCHAR abv[16];
|
WCHAR abv[16];
|
||||||
_itow_s(nID - 1, abv, 10);
|
_itow_s(nID - 1, abv, 10);
|
||||||
nString += L"ID:";
|
nString += L"ID:";
|
||||||
nString += abv;
|
nString += abv;
|
||||||
nString += L"\n";
|
nString += L"\n";
|
||||||
nString += sjp;
|
nString += sjp;
|
||||||
int result = MessageBoxW(NULL, nString.c_str(), L"<EFBFBD><EFBFBD>Ϣ", MB_ICONINFORMATION | MB_OKCANCEL);
|
saveProcess = 0.0;
|
||||||
|
int result = MessageBoxW(NULL, nString.c_str(), L"information", MB_ICONINFORMATION | MB_OKCANCEL);
|
||||||
|
if (result != IDOK) {
|
||||||
if (result != IDOK)
|
saveProcess = 1.0;
|
||||||
return;
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
int p = 0;
|
int p = 0;
|
||||||
|
MicroData *_Index=new MicroData(L"~Index.ax", sizeof(IndexData));
|
||||||
|
MicroBinary* _Data = new MicroBinary(L"~Data.ax");
|
||||||
|
IndexData createData;
|
||||||
while (GetDataByID(p, sjp, scn)) {
|
while (GetDataByID(p, sjp, scn)) {
|
||||||
if (p == (nID - 1)) {
|
if (p == (nID - 1)) {
|
||||||
CreateDataByIDEx(L"~Index.ax", L"~Data.ax", p, sjp, 2 * (lstrlenW(sjp) + 1), data, 2 * (lstrlenW(data) + 1));
|
createData.Id = p;
|
||||||
|
createData.JpLength = 2 * (lstrlenW(sjp) + 1);
|
||||||
|
createData.CnLength = 2 * (lstrlenW(data) + 1);
|
||||||
|
|
||||||
|
createData.JpBass = _Data->Size();
|
||||||
|
_Data->Push(sjp, 2 * (lstrlenW(sjp) + 1));
|
||||||
|
createData.CnBass = _Data->Size();
|
||||||
|
_Data->Push(data, 2 * (lstrlenW(data) + 1));
|
||||||
|
|
||||||
|
_Index->Push(&createData);
|
||||||
|
_Index->Save();
|
||||||
|
_Data->Save();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
CreateDataByIDEx(L"~Index.ax", L"~Data.ax", p, sjp, 2 * (lstrlenW(sjp) + 1), scn, 2 * (lstrlenW(scn) + 1));
|
createData.Id = p;
|
||||||
|
createData.JpLength = 2 * (lstrlenW(sjp) + 1);
|
||||||
|
createData.CnLength = 2 * (lstrlenW(scn) + 1);
|
||||||
|
|
||||||
|
createData.JpBass = _Data->Size();
|
||||||
|
_Data->Push(sjp, 2 * (lstrlenW(sjp) + 1));
|
||||||
|
createData.CnBass = _Data->Size();
|
||||||
|
_Data->Push(scn, 2 * (lstrlenW(scn) + 1));
|
||||||
|
|
||||||
|
_Index->Push(&createData);
|
||||||
|
_Index->Save();
|
||||||
|
_Data->Save();
|
||||||
}
|
}
|
||||||
|
saveProcess = (double)p / (double)(lasger);
|
||||||
p++;
|
p++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
delete _Index;
|
||||||
|
delete _Data;
|
||||||
|
delete Index;
|
||||||
|
delete Data;
|
||||||
|
// saveProcess = 0.0;
|
||||||
|
saveProcess = 1;
|
||||||
DeleteFile(L"Data.ax");
|
DeleteFile(L"Data.ax");
|
||||||
DeleteFile(L"Index.ax");
|
DeleteFile(L"Index.ax");
|
||||||
|
|
||||||
rename("~Data.ax", "Data.ax");
|
rename("~Data.ax", "Data.ax");
|
||||||
rename("~Index.ax", "Index.ax");
|
rename("~Index.ax", "Index.ax");
|
||||||
return;
|
|
||||||
|
Index = new MicroData(L"Index.ax", sizeof(IndexData));
|
||||||
|
Data = new MicroBinary(L"Data.ax");
|
||||||
|
|
||||||
|
Index->Load();
|
||||||
|
Data->Load();
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL CreateDataByIDEx(LPCWSTR name, LPCWSTR name2, int ID, LPCWSTR jpBuff, int ljp, LPCWSTR cnBuffer, int lcn)
|
void CreateDataExport(WCHAR data[])
|
||||||
{
|
{
|
||||||
MicroData _Index(name, sizeof(IndexData));
|
DWORD dwOld;
|
||||||
MicroBinary _Data(name2);
|
HANDLE hTr = OpenProcess(PROCESS_ALL_ACCESS, FALSE, tPid);
|
||||||
|
if (!hTr)
|
||||||
|
MessageBoxA(0,"","",0);
|
||||||
|
LPWSTR PszLibFileRemote = (LPWSTR)VirtualAllocEx(hTr, NULL, 2*(lstrlenW(data)+1), MEM_COMMIT, PAGE_READWRITE);
|
||||||
|
if (!PszLibFileRemote)
|
||||||
|
MessageBoxA(0, "", "", 0);
|
||||||
|
WriteProcessMemory(hTr, PszLibFileRemote, data, 2 * (lstrlenW(data) + 1), &dwOld);
|
||||||
|
|
||||||
_Index.Load();
|
HANDLE hHookStart = CreateRemoteThread(hTr, NULL, 0, (LPTHREAD_START_ROUTINE)
|
||||||
_Data.Load();
|
::GetProcAddress(hMod, "CreateDataExportEx"), PszLibFileRemote, 0, NULL);
|
||||||
|
if (!hHookStart)
|
||||||
IndexData createData;
|
MessageBoxA(0, "", "", 0);
|
||||||
createData.Id = ID;
|
WaitForSingleObject(hHookStart, INFINITE);
|
||||||
createData.JpLength = ljp;
|
|
||||||
createData.CnLength = lcn;
|
|
||||||
|
|
||||||
createData.JpBass = Data->Size();
|
|
||||||
_Data.Push(jpBuff, ljp);
|
|
||||||
createData.CnBass = Data->Size();
|
|
||||||
_Data.Push(cnBuffer, lcn);
|
|
||||||
|
|
||||||
_Index.Push(&createData);
|
|
||||||
_Index.Save();
|
|
||||||
_Data.Save();
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
BOOL CreateDataByID(int ID, LPCWSTR jpBuff, int ljp, LPCWSTR cnBuffer, int lcn)
|
BOOL CreateDataByID(int ID, LPCWSTR jpBuff, int ljp, LPCWSTR cnBuffer, int lcn)
|
||||||
{
|
{
|
||||||
IndexData createData;
|
IndexData createData;
|
||||||
|
|||||||
@@ -4,9 +4,10 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
BOOL CreateDataByIDEx(LPCWSTR name, LPCWSTR name2, int ID, LPCWSTR jpBuff, int ljp, LPCWSTR cnBuffer, int lcn);
|
|
||||||
extern "C" DLLAPI void CreateDataExport(WCHAR data[]);
|
extern "C" DLLAPI void CreateDataExport(WCHAR data[]);
|
||||||
BOOL CreateDataByID(int ID, LPCWSTR jpBuff, int ljp, LPCWSTR cnBuffer, int lcn);
|
BOOL CreateDataByID(int ID, LPCWSTR jpBuff, int ljp, LPCWSTR cnBuffer, int lcn);
|
||||||
BOOL GetDataByJP(int* ID, LPCWSTR jpBuff, LPWSTR cnBuffer);
|
BOOL GetDataByJP(int* ID, LPCWSTR jpBuff, LPWSTR cnBuffer);
|
||||||
BOOL GetDataByID(int ID, LPWSTR jpBuff, LPWSTR cnBuffer);
|
BOOL GetDataByID(int ID, LPWSTR jpBuff, LPWSTR cnBuffer);
|
||||||
int GEtLargestID();
|
int GEtLargestID();
|
||||||
|
|
||||||
|
extern "C" DLLAPI DWORD CreateDataExportEx(LPCWSTR path);
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
20
cs2_patch/Release/cs2_patch.Build.CppClean.log
Normal file
20
cs2_patch/Release/cs2_patch.Build.CppClean.log
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
d:\vsproject\cs2\cs2_united\cs2_patch\release\cs2_patch.pch
|
||||||
|
d:\vsproject\cs2\cs2_united\cs2_patch\release\vc142.pdb
|
||||||
|
d:\vsproject\cs2\cs2_united\cs2_patch\release\pch.obj
|
||||||
|
d:\vsproject\cs2\cs2_united\cs2_patch\release\dllmain.obj
|
||||||
|
d:\vsproject\cs2\cs2_united\cs2_patch\release\replace.obj
|
||||||
|
d:\vsproject\cs2\cs2_united\cs2_patch\release\buildin.obj
|
||||||
|
d:\vsproject\cs2\cs2_united\cs2_patch\release\data.obj
|
||||||
|
d:\vsproject\cs2\cs2_united\release\cs2_patch.lib
|
||||||
|
d:\vsproject\cs2\cs2_united\release\cs2_patch.exp
|
||||||
|
d:\vsproject\cs2\cs2_united\release\cs2_patch.ipdb
|
||||||
|
d:\vsproject\cs2\cs2_united\release\cs2_patch.iobj
|
||||||
|
d:\vsproject\cs2\cs2_united\release\cs2_patch.pdb
|
||||||
|
d:\vsproject\cs2\cs2_united\cs2_patch\release\cs2_patch.tlog\cl.command.1.tlog
|
||||||
|
d:\vsproject\cs2\cs2_united\cs2_patch\release\cs2_patch.tlog\cl.read.1.tlog
|
||||||
|
d:\vsproject\cs2\cs2_united\cs2_patch\release\cs2_patch.tlog\cl.write.1.tlog
|
||||||
|
d:\vsproject\cs2\cs2_united\cs2_patch\release\cs2_patch.tlog\cs2_patch.write.1u.tlog
|
||||||
|
d:\vsproject\cs2\cs2_united\cs2_patch\release\cs2_patch.tlog\link.command.1.tlog
|
||||||
|
d:\vsproject\cs2\cs2_united\cs2_patch\release\cs2_patch.tlog\link.delete.1.tlog
|
||||||
|
d:\vsproject\cs2\cs2_united\cs2_patch\release\cs2_patch.tlog\link.read.1.tlog
|
||||||
|
d:\vsproject\cs2\cs2_united\cs2_patch\release\cs2_patch.tlog\link.write.1.tlog
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
BuildIn.cpp
|
dllmain.cpp
|
||||||
正在创建库 D:\VSProject\cs2\cs2_united\Release\cs2_patch.lib 和对象 D:\VSProject\cs2\cs2_united\Release\cs2_patch.exp
|
正在创建库 D:\VSProject\cs2\cs2_united\Release\cs2_patch.lib 和对象 D:\VSProject\cs2\cs2_united\Release\cs2_patch.exp
|
||||||
正在生成代码
|
正在生成代码
|
||||||
1 of 110 functions ( 0.9%) were compiled, the rest were copied from previous compilation.
|
0 of 112 functions ( 0.0%) were compiled, the rest were copied from previous compilation.
|
||||||
0 functions were new in current compilation
|
0 functions were new in current compilation
|
||||||
0 functions had inline decision re-evaluated but remain unchanged
|
0 functions had inline decision re-evaluated but remain unchanged
|
||||||
已完成代码的生成
|
已完成代码的生成
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -43,16 +43,16 @@ void ApplyStringToCV(LPCWSTR ws, DWORD pDf, int id)
|
|||||||
wstring localString = ws;
|
wstring localString = ws;
|
||||||
if (!pDf)return;
|
if (!pDf)return;
|
||||||
if (!ws)return;
|
if (!ws)return;
|
||||||
DWORD Df = *(DWORD*)pDf;//Df <20><><EFBFBD>ݵ<EFBFBD>ָ<EFBFBD><D6B8>
|
DWORD Df = *(DWORD*)pDf;//Df <20><><EFBFBD>ݵ<EFBFBD>ָ<EFBFBD><D6B8>
|
||||||
if (!Df)return;//Ϊ<><CEAA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֹ<EFBFBD><D6B9><EFBFBD><EFBFBD>
|
if (!Df)return;//Ϊ<><CEAA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֹ<EFBFBD><D6B9><EFBFBD><EFBFBD>
|
||||||
TESTDATA* nCView = (TESTDATA*)Df;//ʹһ<CAB9><D2BB>TESTDATA*ָ<><D6B8>Df
|
TESTDATA* nCView = (TESTDATA*)Df;//ʹһ<CAB9><D2BB>TESTDATA*ָ<><D6B8>Df
|
||||||
DWORD pOld;
|
DWORD pOld;
|
||||||
VirtualProtect(nCView, 10 + (localString.length() * 2), PAGE_READWRITE, &pOld);
|
VirtualProtect(nCView, 10 + (localString.length() * 2), PAGE_READWRITE, &pOld);
|
||||||
TESTDATA loadFirst = *nCView;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
TESTDATA loadFirst = *nCView;//<2F><><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||||
int posInLine = 0;//<2F><><EFBFBD><EFBFBD>λ<EFBFBD><CEBB>
|
int posInLine = 0;//<2F><><EFBFBD><EFBFBD>λ<EFBFBD><CEBB>
|
||||||
int posinCross = 0xD;//<2F><><EFBFBD><EFBFBD>λ<EFBFBD><CEBB>
|
int posinCross = 0xD;//<2F><><EFBFBD><EFBFBD>λ<EFBFBD><CEBB>
|
||||||
|
|
||||||
// SetWindowTextW(m_hWnd, L"<22><><EFBFBD><EFBFBD>ѭ<EFBFBD><D1AD>");
|
// SetWindowTextW(m_hWnd, L"<22><><EFBFBD><EFBFBD>ѭ<EFBFBD><D1AD>");
|
||||||
for (int i = 0; i < localString.length(); i++)
|
for (int i = 0; i < localString.length(); i++)
|
||||||
{
|
{
|
||||||
if (localString[i] == L'\n')
|
if (localString[i] == L'\n')
|
||||||
@@ -71,7 +71,7 @@ void ApplyStringToCV(LPCWSTR ws, DWORD pDf, int id)
|
|||||||
posInLine += 0X1A;
|
posInLine += 0X1A;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// SetWindowTextW(m_hWnd, L"<22><><EFBFBD><EFBFBD>ѭ<EFBFBD><D1AD>");
|
// SetWindowTextW(m_hWnd, L"<22><><EFBFBD><EFBFBD>ѭ<EFBFBD><D1AD>");
|
||||||
*(DWORD*)(pDf + 4) = (DWORD)nCView;
|
*(DWORD*)(pDf + 4) = (DWORD)nCView;
|
||||||
|
|
||||||
VirtualProtect(nCView, 10 + (localString.length() * 2), pOld, NULL);
|
VirtualProtect(nCView, 10 + (localString.length() * 2), pOld, NULL);
|
||||||
@@ -129,14 +129,14 @@ void ApplyStringToCV(LPCWSTR ws, DWORD pDf, int id)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// MessageBoxW(0, L"2", L"", 0);
|
// MessageBoxW(0, L"2", L"", 0);
|
||||||
if (wcsstr(nStr.c_str(), L"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>")) {
|
if (wcsstr(nStr.c_str(), L"………")) {
|
||||||
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (wcsstr(nStr.c_str(), L"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"))
|
if (wcsstr(nStr.c_str(), L"…ああ"))
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
if (wcsstr(nStr.c_str(), L"<EFBFBD>դդդ<EFBFBD>"))
|
if (wcsstr(nStr.c_str(), L"ふふふっ"))
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -117,7 +117,7 @@
|
|||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
|||||||
@@ -1,18 +1,24 @@
|
|||||||
// dllmain.cpp : 定义 DLL 应用程序的入口点。
|
// dllmain.cpp : 定义 DLL 应用程序的入口点。
|
||||||
#include "pch.h"
|
#include "pch.h"
|
||||||
|
|
||||||
#include "Data.h"
|
#include "Data.h"
|
||||||
#include "BuildIn.h"
|
#include "BuildIn.h"
|
||||||
|
|
||||||
#pragma data_seg("PublicData") // 声明共享数据段,并命名该数据段
|
#pragma data_seg("PublicData") // 声明共享数据段,并命名该数据段
|
||||||
|
|
||||||
|
extern "C" DLLAPI double saveProcess = 0.0;
|
||||||
HMODULE hMod = NULL;
|
HMODULE hMod = NULL;
|
||||||
extern "C" DLLAPI wchar_t ms_str[3096] = { 0 };
|
extern "C" DLLAPI wchar_t ms_str[3096] = { 0 };
|
||||||
extern "C" DLLAPI int nID = 0;
|
extern "C" DLLAPI int nID = 0;
|
||||||
|
extern "C" DLLAPI DWORD tPid = 0;
|
||||||
|
|
||||||
#pragma data_seg()
|
#pragma data_seg()
|
||||||
#pragma comment(linker, "/section:PublicData,rws")
|
#pragma comment(linker, "/section:PublicData,rws")
|
||||||
|
|
||||||
|
|
||||||
|
MicroData* Index = NULL;
|
||||||
|
MicroBinary* Data = NULL;
|
||||||
|
|
||||||
char IpfData[16];
|
char IpfData[16];
|
||||||
#define PutInt(a) _itoa_s(a,IpfData,10);MessageBoxA(0,IpfData,"num",0);
|
#define PutInt(a) _itoa_s(a,IpfData,10);MessageBoxA(0,IpfData,"num",0);
|
||||||
|
|
||||||
|
|||||||
@@ -21,19 +21,19 @@ Global
|
|||||||
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Debug|x64.ActiveCfg = Debug|Any CPU
|
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||||
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Debug|x64.Build.0 = Debug|Any CPU
|
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Debug|x64.Build.0 = Debug|Any CPU
|
||||||
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Debug|x86.ActiveCfg = Debug|Any CPU
|
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Debug|x86.ActiveCfg = Release|x86
|
||||||
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Debug|x86.Build.0 = Debug|Any CPU
|
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Debug|x86.Build.0 = Release|x86
|
||||||
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Release|Any CPU.Build.0 = Release|Any CPU
|
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Release|x64.ActiveCfg = Release|Any CPU
|
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Release|x64.ActiveCfg = Release|Any CPU
|
||||||
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Release|x64.Build.0 = Release|Any CPU
|
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Release|x64.Build.0 = Release|Any CPU
|
||||||
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Release|x86.ActiveCfg = Release|Any CPU
|
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Release|x86.ActiveCfg = Release|x86
|
||||||
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Release|x86.Build.0 = Release|Any CPU
|
{460F93FF-C32C-455C-A2F6-BB81E86961AE}.Release|x86.Build.0 = Release|x86
|
||||||
{DB403E75-A69B-4B8E-AD02-9CF48E7C93A7}.Debug|Any CPU.ActiveCfg = Debug|Win32
|
{DB403E75-A69B-4B8E-AD02-9CF48E7C93A7}.Debug|Any CPU.ActiveCfg = Debug|Win32
|
||||||
{DB403E75-A69B-4B8E-AD02-9CF48E7C93A7}.Debug|x64.ActiveCfg = Debug|x64
|
{DB403E75-A69B-4B8E-AD02-9CF48E7C93A7}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
{DB403E75-A69B-4B8E-AD02-9CF48E7C93A7}.Debug|x64.Build.0 = Debug|x64
|
{DB403E75-A69B-4B8E-AD02-9CF48E7C93A7}.Debug|x64.Build.0 = Debug|x64
|
||||||
{DB403E75-A69B-4B8E-AD02-9CF48E7C93A7}.Debug|x86.ActiveCfg = Debug|Win32
|
{DB403E75-A69B-4B8E-AD02-9CF48E7C93A7}.Debug|x86.ActiveCfg = Release|Win32
|
||||||
{DB403E75-A69B-4B8E-AD02-9CF48E7C93A7}.Debug|x86.Build.0 = Debug|Win32
|
{DB403E75-A69B-4B8E-AD02-9CF48E7C93A7}.Debug|x86.Build.0 = Release|Win32
|
||||||
{DB403E75-A69B-4B8E-AD02-9CF48E7C93A7}.Release|Any CPU.ActiveCfg = Release|Win32
|
{DB403E75-A69B-4B8E-AD02-9CF48E7C93A7}.Release|Any CPU.ActiveCfg = Release|Win32
|
||||||
{DB403E75-A69B-4B8E-AD02-9CF48E7C93A7}.Release|x64.ActiveCfg = Release|x64
|
{DB403E75-A69B-4B8E-AD02-9CF48E7C93A7}.Release|x64.ActiveCfg = Release|x64
|
||||||
{DB403E75-A69B-4B8E-AD02-9CF48E7C93A7}.Release|x64.Build.0 = Release|x64
|
{DB403E75-A69B-4B8E-AD02-9CF48E7C93A7}.Release|x64.Build.0 = Release|x64
|
||||||
|
|||||||
BIN
packages/Microsoft.IdentityModel.Logging.5.6.0/.signature.p7s
vendored
Normal file
BIN
packages/Microsoft.IdentityModel.Logging.5.6.0/.signature.p7s
vendored
Normal file
Binary file not shown.
BIN
packages/Microsoft.IdentityModel.Logging.5.6.0/Microsoft.IdentityModel.Logging.5.6.0.nupkg
vendored
Normal file
BIN
packages/Microsoft.IdentityModel.Logging.5.6.0/Microsoft.IdentityModel.Logging.5.6.0.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/Microsoft.IdentityModel.Logging.5.6.0/lib/net45/Microsoft.IdentityModel.Logging.dll
vendored
Normal file
BIN
packages/Microsoft.IdentityModel.Logging.5.6.0/lib/net45/Microsoft.IdentityModel.Logging.dll
vendored
Normal file
Binary file not shown.
398
packages/Microsoft.IdentityModel.Logging.5.6.0/lib/net45/Microsoft.IdentityModel.Logging.xml
vendored
Normal file
398
packages/Microsoft.IdentityModel.Logging.5.6.0/lib/net45/Microsoft.IdentityModel.Logging.xml
vendored
Normal file
@@ -0,0 +1,398 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<doc>
|
||||||
|
<assembly>
|
||||||
|
<name>Microsoft.IdentityModel.Logging</name>
|
||||||
|
</assembly>
|
||||||
|
<members>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.IdentityModelEventSource">
|
||||||
|
<summary>
|
||||||
|
Event source based logger to log different events.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.Logger">
|
||||||
|
<summary>
|
||||||
|
Static logger that is exposed externally. An external application or framework can hook up a listener to this event source to log data in a custom way.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.ShowPII">
|
||||||
|
<summary>
|
||||||
|
Flag which indicates whether or not PII is shown in logs. False by default.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.HiddenPIIString">
|
||||||
|
<summary>
|
||||||
|
String that is used in place of any arguments to log messages if the 'ShowPII' flag is set to false.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.HeaderWritten">
|
||||||
|
<summary>
|
||||||
|
Indicates whether or the log message header (contains library version, date/time, and PII debugging information) has been written.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._versionLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that indicates the current library version.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._dateLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that indicates the date.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._piiOffLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that is shown when PII is off.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._piiOnLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that is shown when PII is off.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteAlways(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an event log by using the provided string argument and current UTC time.
|
||||||
|
No level filtering is done on the event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<remarks>No level filtering.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteAlways(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteVerbose(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes a verbose event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteVerbose(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes a verbose event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteInformation(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an information event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteInformation(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an information event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteWarning(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes a warning event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteWarning(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes a warning event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteError(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an error event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteError(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an error event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteCritical(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes a critical event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteCritical(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes a critical event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.Write(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an exception log by using the provided event identifer, exception argument, string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="level"><see cref="T:System.Diagnostics.Tracing.EventLevel"/></param>
|
||||||
|
<param name="innerException"><see cref="T:System.Exception"/></param>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.Write(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an exception log by using the provided event identifer, exception argument, string argument, arguments list and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="level"><see cref="T:System.Diagnostics.Tracing.EventLevel"/></param>
|
||||||
|
<param name="innerException"><see cref="T:System.Exception"/></param>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.LogLevel">
|
||||||
|
<summary>
|
||||||
|
Minimum log level to log events. Default is Warning.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.LogHelper">
|
||||||
|
<summary>
|
||||||
|
Helper class for logging.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentNullException(System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new <see cref="T:System.ArgumentNullException"/> exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argument">argument that is null or empty.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogExceptionMessage(System.Exception)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger.
|
||||||
|
</summary>
|
||||||
|
<param name="exception">The exception to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogExceptionMessage(System.Diagnostics.Tracing.EventLevel,System.Exception)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="exception">The exception to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogInformation(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an information event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogVerbose(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs a verbose event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogWarning(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs a warning event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogExceptionImpl``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.FormatInvariant(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Formats the string using InvariantCulture
|
||||||
|
</summary>
|
||||||
|
<param name="format">Format string.</param>
|
||||||
|
<param name="args">Format arguments.</param>
|
||||||
|
<returns>Formatted string.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.LogMessages">
|
||||||
|
<summary>
|
||||||
|
Log messages and codes for Microsoft.IdentityModel.Logging
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.TextWriterEventListener">
|
||||||
|
<summary>
|
||||||
|
Event listener that writes logs to a file or a fileStream provided by user.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.TextWriterEventListener.DefaultLogFileName">
|
||||||
|
<summary>
|
||||||
|
Name of the default log file, excluding its path.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.#ctor">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> that writes logs to text file.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.#ctor(System.String)">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> that writes logs to text file.
|
||||||
|
</summary>
|
||||||
|
<param name="filePath">location of the file where log messages will be written.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.#ctor(System.IO.StreamWriter)">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> that writes logs to text file.
|
||||||
|
</summary>
|
||||||
|
<param name="streamWriter">StreamWriter where logs will be written.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.OnEventWritten(System.Diagnostics.Tracing.EventWrittenEventArgs)">
|
||||||
|
<summary>
|
||||||
|
Called whenever an event has been written by an event source for which the event listener has enabled events.
|
||||||
|
</summary>
|
||||||
|
<param name="eventData"><see cref="T:System.Diagnostics.Tracing.EventWrittenEventArgs"/></param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.Dispose">
|
||||||
|
<summary>
|
||||||
|
Releases all resources used by the current instance of the <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> class.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
</members>
|
||||||
|
</doc>
|
||||||
BIN
packages/Microsoft.IdentityModel.Logging.5.6.0/lib/net451/Microsoft.IdentityModel.Logging.dll
vendored
Normal file
BIN
packages/Microsoft.IdentityModel.Logging.5.6.0/lib/net451/Microsoft.IdentityModel.Logging.dll
vendored
Normal file
Binary file not shown.
398
packages/Microsoft.IdentityModel.Logging.5.6.0/lib/net451/Microsoft.IdentityModel.Logging.xml
vendored
Normal file
398
packages/Microsoft.IdentityModel.Logging.5.6.0/lib/net451/Microsoft.IdentityModel.Logging.xml
vendored
Normal file
@@ -0,0 +1,398 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<doc>
|
||||||
|
<assembly>
|
||||||
|
<name>Microsoft.IdentityModel.Logging</name>
|
||||||
|
</assembly>
|
||||||
|
<members>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.IdentityModelEventSource">
|
||||||
|
<summary>
|
||||||
|
Event source based logger to log different events.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.Logger">
|
||||||
|
<summary>
|
||||||
|
Static logger that is exposed externally. An external application or framework can hook up a listener to this event source to log data in a custom way.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.ShowPII">
|
||||||
|
<summary>
|
||||||
|
Flag which indicates whether or not PII is shown in logs. False by default.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.HiddenPIIString">
|
||||||
|
<summary>
|
||||||
|
String that is used in place of any arguments to log messages if the 'ShowPII' flag is set to false.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.HeaderWritten">
|
||||||
|
<summary>
|
||||||
|
Indicates whether or the log message header (contains library version, date/time, and PII debugging information) has been written.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._versionLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that indicates the current library version.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._dateLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that indicates the date.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._piiOffLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that is shown when PII is off.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._piiOnLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that is shown when PII is off.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteAlways(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an event log by using the provided string argument and current UTC time.
|
||||||
|
No level filtering is done on the event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<remarks>No level filtering.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteAlways(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteVerbose(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes a verbose event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteVerbose(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes a verbose event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteInformation(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an information event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteInformation(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an information event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteWarning(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes a warning event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteWarning(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes a warning event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteError(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an error event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteError(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an error event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteCritical(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes a critical event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteCritical(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes a critical event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.Write(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an exception log by using the provided event identifer, exception argument, string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="level"><see cref="T:System.Diagnostics.Tracing.EventLevel"/></param>
|
||||||
|
<param name="innerException"><see cref="T:System.Exception"/></param>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.Write(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an exception log by using the provided event identifer, exception argument, string argument, arguments list and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="level"><see cref="T:System.Diagnostics.Tracing.EventLevel"/></param>
|
||||||
|
<param name="innerException"><see cref="T:System.Exception"/></param>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.LogLevel">
|
||||||
|
<summary>
|
||||||
|
Minimum log level to log events. Default is Warning.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.LogHelper">
|
||||||
|
<summary>
|
||||||
|
Helper class for logging.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentNullException(System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new <see cref="T:System.ArgumentNullException"/> exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argument">argument that is null or empty.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogExceptionMessage(System.Exception)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger.
|
||||||
|
</summary>
|
||||||
|
<param name="exception">The exception to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogExceptionMessage(System.Diagnostics.Tracing.EventLevel,System.Exception)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="exception">The exception to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogInformation(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an information event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogVerbose(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs a verbose event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogWarning(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs a warning event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogExceptionImpl``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.FormatInvariant(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Formats the string using InvariantCulture
|
||||||
|
</summary>
|
||||||
|
<param name="format">Format string.</param>
|
||||||
|
<param name="args">Format arguments.</param>
|
||||||
|
<returns>Formatted string.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.LogMessages">
|
||||||
|
<summary>
|
||||||
|
Log messages and codes for Microsoft.IdentityModel.Logging
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.TextWriterEventListener">
|
||||||
|
<summary>
|
||||||
|
Event listener that writes logs to a file or a fileStream provided by user.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.TextWriterEventListener.DefaultLogFileName">
|
||||||
|
<summary>
|
||||||
|
Name of the default log file, excluding its path.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.#ctor">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> that writes logs to text file.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.#ctor(System.String)">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> that writes logs to text file.
|
||||||
|
</summary>
|
||||||
|
<param name="filePath">location of the file where log messages will be written.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.#ctor(System.IO.StreamWriter)">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> that writes logs to text file.
|
||||||
|
</summary>
|
||||||
|
<param name="streamWriter">StreamWriter where logs will be written.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.OnEventWritten(System.Diagnostics.Tracing.EventWrittenEventArgs)">
|
||||||
|
<summary>
|
||||||
|
Called whenever an event has been written by an event source for which the event listener has enabled events.
|
||||||
|
</summary>
|
||||||
|
<param name="eventData"><see cref="T:System.Diagnostics.Tracing.EventWrittenEventArgs"/></param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.Dispose">
|
||||||
|
<summary>
|
||||||
|
Releases all resources used by the current instance of the <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> class.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
</members>
|
||||||
|
</doc>
|
||||||
BIN
packages/Microsoft.IdentityModel.Logging.5.6.0/lib/net461/Microsoft.IdentityModel.Logging.dll
vendored
Normal file
BIN
packages/Microsoft.IdentityModel.Logging.5.6.0/lib/net461/Microsoft.IdentityModel.Logging.dll
vendored
Normal file
Binary file not shown.
398
packages/Microsoft.IdentityModel.Logging.5.6.0/lib/net461/Microsoft.IdentityModel.Logging.xml
vendored
Normal file
398
packages/Microsoft.IdentityModel.Logging.5.6.0/lib/net461/Microsoft.IdentityModel.Logging.xml
vendored
Normal file
@@ -0,0 +1,398 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<doc>
|
||||||
|
<assembly>
|
||||||
|
<name>Microsoft.IdentityModel.Logging</name>
|
||||||
|
</assembly>
|
||||||
|
<members>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.IdentityModelEventSource">
|
||||||
|
<summary>
|
||||||
|
Event source based logger to log different events.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.Logger">
|
||||||
|
<summary>
|
||||||
|
Static logger that is exposed externally. An external application or framework can hook up a listener to this event source to log data in a custom way.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.ShowPII">
|
||||||
|
<summary>
|
||||||
|
Flag which indicates whether or not PII is shown in logs. False by default.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.HiddenPIIString">
|
||||||
|
<summary>
|
||||||
|
String that is used in place of any arguments to log messages if the 'ShowPII' flag is set to false.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.HeaderWritten">
|
||||||
|
<summary>
|
||||||
|
Indicates whether or the log message header (contains library version, date/time, and PII debugging information) has been written.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._versionLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that indicates the current library version.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._dateLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that indicates the date.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._piiOffLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that is shown when PII is off.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._piiOnLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that is shown when PII is off.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteAlways(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an event log by using the provided string argument and current UTC time.
|
||||||
|
No level filtering is done on the event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<remarks>No level filtering.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteAlways(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteVerbose(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes a verbose event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteVerbose(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes a verbose event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteInformation(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an information event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteInformation(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an information event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteWarning(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes a warning event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteWarning(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes a warning event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteError(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an error event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteError(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an error event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteCritical(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes a critical event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteCritical(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes a critical event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.Write(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an exception log by using the provided event identifer, exception argument, string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="level"><see cref="T:System.Diagnostics.Tracing.EventLevel"/></param>
|
||||||
|
<param name="innerException"><see cref="T:System.Exception"/></param>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.Write(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an exception log by using the provided event identifer, exception argument, string argument, arguments list and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="level"><see cref="T:System.Diagnostics.Tracing.EventLevel"/></param>
|
||||||
|
<param name="innerException"><see cref="T:System.Exception"/></param>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.LogLevel">
|
||||||
|
<summary>
|
||||||
|
Minimum log level to log events. Default is Warning.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.LogHelper">
|
||||||
|
<summary>
|
||||||
|
Helper class for logging.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentNullException(System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new <see cref="T:System.ArgumentNullException"/> exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argument">argument that is null or empty.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogExceptionMessage(System.Exception)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger.
|
||||||
|
</summary>
|
||||||
|
<param name="exception">The exception to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogExceptionMessage(System.Diagnostics.Tracing.EventLevel,System.Exception)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="exception">The exception to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogInformation(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an information event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogVerbose(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs a verbose event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogWarning(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs a warning event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogExceptionImpl``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.FormatInvariant(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Formats the string using InvariantCulture
|
||||||
|
</summary>
|
||||||
|
<param name="format">Format string.</param>
|
||||||
|
<param name="args">Format arguments.</param>
|
||||||
|
<returns>Formatted string.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.LogMessages">
|
||||||
|
<summary>
|
||||||
|
Log messages and codes for Microsoft.IdentityModel.Logging
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.TextWriterEventListener">
|
||||||
|
<summary>
|
||||||
|
Event listener that writes logs to a file or a fileStream provided by user.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.TextWriterEventListener.DefaultLogFileName">
|
||||||
|
<summary>
|
||||||
|
Name of the default log file, excluding its path.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.#ctor">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> that writes logs to text file.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.#ctor(System.String)">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> that writes logs to text file.
|
||||||
|
</summary>
|
||||||
|
<param name="filePath">location of the file where log messages will be written.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.#ctor(System.IO.StreamWriter)">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> that writes logs to text file.
|
||||||
|
</summary>
|
||||||
|
<param name="streamWriter">StreamWriter where logs will be written.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.OnEventWritten(System.Diagnostics.Tracing.EventWrittenEventArgs)">
|
||||||
|
<summary>
|
||||||
|
Called whenever an event has been written by an event source for which the event listener has enabled events.
|
||||||
|
</summary>
|
||||||
|
<param name="eventData"><see cref="T:System.Diagnostics.Tracing.EventWrittenEventArgs"/></param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.Dispose">
|
||||||
|
<summary>
|
||||||
|
Releases all resources used by the current instance of the <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> class.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
</members>
|
||||||
|
</doc>
|
||||||
Binary file not shown.
@@ -0,0 +1,398 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<doc>
|
||||||
|
<assembly>
|
||||||
|
<name>Microsoft.IdentityModel.Logging</name>
|
||||||
|
</assembly>
|
||||||
|
<members>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.IdentityModelEventSource">
|
||||||
|
<summary>
|
||||||
|
Event source based logger to log different events.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.Logger">
|
||||||
|
<summary>
|
||||||
|
Static logger that is exposed externally. An external application or framework can hook up a listener to this event source to log data in a custom way.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.ShowPII">
|
||||||
|
<summary>
|
||||||
|
Flag which indicates whether or not PII is shown in logs. False by default.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.HiddenPIIString">
|
||||||
|
<summary>
|
||||||
|
String that is used in place of any arguments to log messages if the 'ShowPII' flag is set to false.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.HeaderWritten">
|
||||||
|
<summary>
|
||||||
|
Indicates whether or the log message header (contains library version, date/time, and PII debugging information) has been written.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._versionLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that indicates the current library version.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._dateLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that indicates the date.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._piiOffLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that is shown when PII is off.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._piiOnLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that is shown when PII is off.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteAlways(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an event log by using the provided string argument and current UTC time.
|
||||||
|
No level filtering is done on the event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<remarks>No level filtering.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteAlways(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteVerbose(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes a verbose event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteVerbose(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes a verbose event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteInformation(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an information event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteInformation(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an information event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteWarning(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes a warning event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteWarning(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes a warning event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteError(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an error event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteError(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an error event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteCritical(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes a critical event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteCritical(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes a critical event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.Write(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an exception log by using the provided event identifer, exception argument, string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="level"><see cref="T:System.Diagnostics.Tracing.EventLevel"/></param>
|
||||||
|
<param name="innerException"><see cref="T:System.Exception"/></param>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.Write(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an exception log by using the provided event identifer, exception argument, string argument, arguments list and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="level"><see cref="T:System.Diagnostics.Tracing.EventLevel"/></param>
|
||||||
|
<param name="innerException"><see cref="T:System.Exception"/></param>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.LogLevel">
|
||||||
|
<summary>
|
||||||
|
Minimum log level to log events. Default is Warning.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.LogHelper">
|
||||||
|
<summary>
|
||||||
|
Helper class for logging.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentNullException(System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new <see cref="T:System.ArgumentNullException"/> exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argument">argument that is null or empty.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogExceptionMessage(System.Exception)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger.
|
||||||
|
</summary>
|
||||||
|
<param name="exception">The exception to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogExceptionMessage(System.Diagnostics.Tracing.EventLevel,System.Exception)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="exception">The exception to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogInformation(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an information event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogVerbose(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs a verbose event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogWarning(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs a warning event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogExceptionImpl``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.FormatInvariant(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Formats the string using InvariantCulture
|
||||||
|
</summary>
|
||||||
|
<param name="format">Format string.</param>
|
||||||
|
<param name="args">Format arguments.</param>
|
||||||
|
<returns>Formatted string.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.LogMessages">
|
||||||
|
<summary>
|
||||||
|
Log messages and codes for Microsoft.IdentityModel.Logging
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.TextWriterEventListener">
|
||||||
|
<summary>
|
||||||
|
Event listener that writes logs to a file or a fileStream provided by user.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.TextWriterEventListener.DefaultLogFileName">
|
||||||
|
<summary>
|
||||||
|
Name of the default log file, excluding its path.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.#ctor">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> that writes logs to text file.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.#ctor(System.String)">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> that writes logs to text file.
|
||||||
|
</summary>
|
||||||
|
<param name="filePath">location of the file where log messages will be written.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.#ctor(System.IO.StreamWriter)">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> that writes logs to text file.
|
||||||
|
</summary>
|
||||||
|
<param name="streamWriter">StreamWriter where logs will be written.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.OnEventWritten(System.Diagnostics.Tracing.EventWrittenEventArgs)">
|
||||||
|
<summary>
|
||||||
|
Called whenever an event has been written by an event source for which the event listener has enabled events.
|
||||||
|
</summary>
|
||||||
|
<param name="eventData"><see cref="T:System.Diagnostics.Tracing.EventWrittenEventArgs"/></param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.Dispose">
|
||||||
|
<summary>
|
||||||
|
Releases all resources used by the current instance of the <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> class.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
</members>
|
||||||
|
</doc>
|
||||||
Binary file not shown.
@@ -0,0 +1,398 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<doc>
|
||||||
|
<assembly>
|
||||||
|
<name>Microsoft.IdentityModel.Logging</name>
|
||||||
|
</assembly>
|
||||||
|
<members>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.IdentityModelEventSource">
|
||||||
|
<summary>
|
||||||
|
Event source based logger to log different events.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.Logger">
|
||||||
|
<summary>
|
||||||
|
Static logger that is exposed externally. An external application or framework can hook up a listener to this event source to log data in a custom way.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.ShowPII">
|
||||||
|
<summary>
|
||||||
|
Flag which indicates whether or not PII is shown in logs. False by default.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.HiddenPIIString">
|
||||||
|
<summary>
|
||||||
|
String that is used in place of any arguments to log messages if the 'ShowPII' flag is set to false.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.HeaderWritten">
|
||||||
|
<summary>
|
||||||
|
Indicates whether or the log message header (contains library version, date/time, and PII debugging information) has been written.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._versionLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that indicates the current library version.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._dateLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that indicates the date.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._piiOffLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that is shown when PII is off.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.IdentityModelEventSource._piiOnLogMessage">
|
||||||
|
<summary>
|
||||||
|
The log message that is shown when PII is off.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteAlways(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an event log by using the provided string argument and current UTC time.
|
||||||
|
No level filtering is done on the event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<remarks>No level filtering.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteAlways(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteVerbose(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes a verbose event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteVerbose(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes a verbose event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteInformation(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an information event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteInformation(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an information event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteWarning(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes a warning event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteWarning(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes a warning event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteError(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an error event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteError(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an error event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteCritical(System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes a critical event log by using the provided string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.WriteCritical(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes a critical event log by using the provided string argument, current UTC time and the provided arguments list.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.Write(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Writes an exception log by using the provided event identifer, exception argument, string argument and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="level"><see cref="T:System.Diagnostics.Tracing.EventLevel"/></param>
|
||||||
|
<param name="innerException"><see cref="T:System.Exception"/></param>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.IdentityModelEventSource.Write(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Writes an exception log by using the provided event identifer, exception argument, string argument, arguments list and current UTC time.
|
||||||
|
</summary>
|
||||||
|
<param name="level"><see cref="T:System.Diagnostics.Tracing.EventLevel"/></param>
|
||||||
|
<param name="innerException"><see cref="T:System.Exception"/></param>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="P:Microsoft.IdentityModel.Logging.IdentityModelEventSource.LogLevel">
|
||||||
|
<summary>
|
||||||
|
Minimum log level to log events. Default is Warning.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.LogHelper">
|
||||||
|
<summary>
|
||||||
|
Helper class for logging.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentNullException(System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new <see cref="T:System.ArgumentNullException"/> exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argument">argument that is null or empty.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.String,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
<remarks>EventLevel is set to Error.</remarks>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Exception,System.String)">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="message">message to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogException``1(System.Diagnostics.Tracing.EventLevel,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogArgumentException``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an argument exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogExceptionMessage(System.Exception)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger.
|
||||||
|
</summary>
|
||||||
|
<param name="exception">The exception to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogExceptionMessage(System.Diagnostics.Tracing.EventLevel,System.Exception)">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="exception">The exception to log.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogInformation(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an information event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogVerbose(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs a verbose event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogWarning(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs a warning event.
|
||||||
|
</summary>
|
||||||
|
<param name="message">The log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.LogExceptionImpl``1(System.Diagnostics.Tracing.EventLevel,System.String,System.Exception,System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Logs an exception using the event source logger and returns new typed exception.
|
||||||
|
</summary>
|
||||||
|
<param name="eventLevel">Identifies the level of an event to be logged.</param>
|
||||||
|
<param name="argumentName">Identifies the argument whose value generated the ArgumentException.</param>
|
||||||
|
<param name="innerException">the inner <see cref="T:System.Exception"/> to be added to the outer exception.</param>
|
||||||
|
<param name="format">Format string of the log message.</param>
|
||||||
|
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.LogHelper.FormatInvariant(System.String,System.Object[])">
|
||||||
|
<summary>
|
||||||
|
Formats the string using InvariantCulture
|
||||||
|
</summary>
|
||||||
|
<param name="format">Format string.</param>
|
||||||
|
<param name="args">Format arguments.</param>
|
||||||
|
<returns>Formatted string.</returns>
|
||||||
|
</member>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.LogMessages">
|
||||||
|
<summary>
|
||||||
|
Log messages and codes for Microsoft.IdentityModel.Logging
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Microsoft.IdentityModel.Logging.TextWriterEventListener">
|
||||||
|
<summary>
|
||||||
|
Event listener that writes logs to a file or a fileStream provided by user.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:Microsoft.IdentityModel.Logging.TextWriterEventListener.DefaultLogFileName">
|
||||||
|
<summary>
|
||||||
|
Name of the default log file, excluding its path.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.#ctor">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> that writes logs to text file.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.#ctor(System.String)">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> that writes logs to text file.
|
||||||
|
</summary>
|
||||||
|
<param name="filePath">location of the file where log messages will be written.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.#ctor(System.IO.StreamWriter)">
|
||||||
|
<summary>
|
||||||
|
Initializes a new instance of <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> that writes logs to text file.
|
||||||
|
</summary>
|
||||||
|
<param name="streamWriter">StreamWriter where logs will be written.</param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.OnEventWritten(System.Diagnostics.Tracing.EventWrittenEventArgs)">
|
||||||
|
<summary>
|
||||||
|
Called whenever an event has been written by an event source for which the event listener has enabled events.
|
||||||
|
</summary>
|
||||||
|
<param name="eventData"><see cref="T:System.Diagnostics.Tracing.EventWrittenEventArgs"/></param>
|
||||||
|
</member>
|
||||||
|
<member name="M:Microsoft.IdentityModel.Logging.TextWriterEventListener.Dispose">
|
||||||
|
<summary>
|
||||||
|
Releases all resources used by the current instance of the <see cref="T:Microsoft.IdentityModel.Logging.TextWriterEventListener"/> class.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
</members>
|
||||||
|
</doc>
|
||||||
BIN
packages/Selenium.WebDriver.3.141.0/.signature.p7s
vendored
Normal file
BIN
packages/Selenium.WebDriver.3.141.0/.signature.p7s
vendored
Normal file
Binary file not shown.
BIN
packages/Selenium.WebDriver.3.141.0/Selenium.WebDriver.3.141.0.nupkg
vendored
Normal file
BIN
packages/Selenium.WebDriver.3.141.0/Selenium.WebDriver.3.141.0.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/Selenium.WebDriver.3.141.0/lib/net35/WebDriver.dll
vendored
Normal file
BIN
packages/Selenium.WebDriver.3.141.0/lib/net35/WebDriver.dll
vendored
Normal file
Binary file not shown.
12041
packages/Selenium.WebDriver.3.141.0/lib/net35/WebDriver.xml
vendored
Normal file
12041
packages/Selenium.WebDriver.3.141.0/lib/net35/WebDriver.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
packages/Selenium.WebDriver.3.141.0/lib/net40/WebDriver.dll
vendored
Normal file
BIN
packages/Selenium.WebDriver.3.141.0/lib/net40/WebDriver.dll
vendored
Normal file
Binary file not shown.
12041
packages/Selenium.WebDriver.3.141.0/lib/net40/WebDriver.xml
vendored
Normal file
12041
packages/Selenium.WebDriver.3.141.0/lib/net40/WebDriver.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
packages/Selenium.WebDriver.3.141.0/lib/net45/WebDriver.dll
vendored
Normal file
BIN
packages/Selenium.WebDriver.3.141.0/lib/net45/WebDriver.dll
vendored
Normal file
Binary file not shown.
BIN
packages/Selenium.WebDriver.3.141.0/lib/net45/WebDriver.xml
vendored
Normal file
BIN
packages/Selenium.WebDriver.3.141.0/lib/net45/WebDriver.xml
vendored
Normal file
Binary file not shown.
BIN
packages/Selenium.WebDriver.3.141.0/lib/netstandard2.0/WebDriver.dll
vendored
Normal file
BIN
packages/Selenium.WebDriver.3.141.0/lib/netstandard2.0/WebDriver.dll
vendored
Normal file
Binary file not shown.
12083
packages/Selenium.WebDriver.3.141.0/lib/netstandard2.0/WebDriver.xml
vendored
Normal file
12083
packages/Selenium.WebDriver.3.141.0/lib/netstandard2.0/WebDriver.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user