turtle-entertainment.de
here is your Heart of the Swarm Beta Key!
EJR6GK-BF9M-TBECEC-TR7X-RT9EB7
Enjoy!
C# WinRt
Thursday, 12 September 2013
Thursday, 25 July 2013
Value Response Header Get Set Cookie In C#
client.MaxResponseContentBufferSize = Int32.MaxValue;
HttpResponseMessage response = await client.GetAsync(new Uri("http://www.google.com"));
string j = (response.Headers.ToString());
IList<string> valu = j.Split(' ').Reverse().ToList<string>();
for (int i = 0; i < j.Length; i++)
{
if (valu[i].StartsWith("JSESSIONID"))//if Set-Cookie
{
var s = valu[i];
char[] delimiters = new[] { ',', ';', ' ' }; // List of your delimiters
var splitte = s.Split(delimiters, StringSplitOptions.RemoveEmptyEntries);
s = splitte[0].Replace("JSESSIONID=", "");
}
}
Wednesday, 17 July 2013
ADDING STRONG NAME TO EXISTING DLL IN VS 2010
code :
Setting environment for using Microsoft Visual Studio 2010 x86 tools
Step 1 : Run visual studio command prompt and go to directory where your DLL located.
For Example my DLL located in D:/Test.dll
Step 2 : Now create il file using below command.
D:/> ildasm /all /out=Test.il Test.dll
(this command generate code library)
Step 3 : Generate new Key for sign your project.
D:/> sn -k mykey.snk
Step 4 : Now sign your library using ilasm command.
D:/> ilasm /dll /key=mykey.snk Test.il
so after this step your assembly contains strong name and signed.
example done successfully :
C:\>ildasm /all /out=eCOS_ConnSharepoint.il eCOS_ConnSharepoint.dll
C:\>sn -k mykey.snk
Microsoft (R) .NET Framework Strong Name Utility Version 4.0.30319.1
Copyright (c) Microsoft Corporation. All rights reserved.
Key pair written to mykey.snk
C:\>ilasm /dll /key=mykey.snk eCOS_ConnSharepoint.il
Microsoft (R) .NET Framework IL Assembler. Version 4.0.30319.1
Copyright (c) Microsoft Corporation. All rights reserved.
Assembling 'eCOS_ConnSharepoint.il' to DLL --> 'eCOS_ConnSharepoint.dll'
Source file is ANSI
Assembled method eCOS_ConnSharepoint.eCOS_fileLoader::UploadFileToDocLib
Assembled method eCOS_ConnSharepoint.eCOS_fileLoader::.ctor
Creating PE file
Emitting classes:
Class 1: eCOS_ConnSharepoint.eCOS_fileLoader
Emitting fields and methods:
Global
Class 1 Methods: 2;
Emitting events and properties:
Global
Class 1
Writing PE file
Signing file with strong name
Operation completed successfully
C:\>gacutil.exe /i c:\eCOS_ConnSharepoint.dll
Microsoft (R) .NET Global Assembly Cache Utility. Version 4.0.30319.1
Copyright (c) Microsoft Corporation. All rights reserved.
Assembly successfully added to the cache
Tuesday, 16 July 2013
Subscribe to:
Posts (Atom)