Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
37 changes: 37 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Formatting-only indentation changes from `dev/490-use_spaces_indentation` branch

# Convert indentation from tabs to spaces in project `ADODBApi.csproj`
6af363289506c23d1f8906ef248a2bebd26d3494

# Convert indentation from tabs to spaces in project `DAOApi.csproj`
5981cb8ce71464a2182f0a98390e503349791530

# Convert indentation from tabs to spaces in project `MSComctlLibApi.csproj`
6bb1f1e184d8c7a6586f532282c8fe6f18a10888

# Convert indentation from tabs to spaces in project `MSDATASRCApi.csproj`
87d32ea3691e520ddce3c9ae9b2cd7b4818759c1

# Convert indentation from tabs to spaces in project `OfficeApi.csproj`
cf74c5f86a74bca96ee3b357f9df4cf0bfb7f535

# Convert indentation from tabs to spaces in project `VBIDEApi.csproj`
7eb5c5985c90c0e07e0f96eb64f681444d886b25

# Convert indentation from tabs to spaces in project `OWC10Api.csproj`
2545f440c601666e71e4f3c679dedd2ea6bcb35a

# Convert indentation from tabs to spaces in project `OutlookApi.csproj`
17f9d48b1fee7ee631beaca9ed605a1f2de16299

# Convert indentation from tabs to spaces in project `ExcelApi.csproj`
20f8c00f203691f488af825c7df89f59d7bd03e3

# Convert indentation from tabs to spaces in project `PowerPointApi.csproj`
90df9b93c4de2135bfa81fa4c0b34ffcd79b2932

# Convert indentation from tabs to spaces in project `WordApi.csproj`
26ca7198f20d3c03c2afe93fe8074638bbf1d156

# Convert indentation from tabs to spaces in project `AccessApi.csproj`
6db208ae5adf919613652870680e6dc1ac5c0854
6 changes: 3 additions & 3 deletions Source/ADODB/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

/*
Contains the following Type Libraries:
Name - Description - SupportByVersion
ADODB - Microsoft ActiveX Data Objects 2.1 Library - 2.1
ADODB - Microsoft ActiveX Data Objects 2.5 Library - 2.5
Name - Description - SupportByVersion
ADODB - Microsoft ActiveX Data Objects 2.1 Library - 2.1
ADODB - Microsoft ActiveX Data Objects 2.5 Library - 2.5

*/

Expand Down
146 changes: 73 additions & 73 deletions Source/ADODB/Classes/Command.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@

namespace NetOffice.ADODBApi
{
#region Delegates

#pragma warning disable
#pragma warning restore

#endregion

/// <summary>
/// CoClass Command
/// SupportByVersion ADODB, 2.1,2.5
/// </summary>
[SupportByVersion("ADODB", 2.1,2.5)]
[EntityType(EntityType.IsCoClass)]
public class Command : _Command
{
#pragma warning disable

#region Fields
private NetRuntimeSystem.Runtime.InteropServices.ComTypes.IConnectionPoint _connectPoint;
private string _activeSinkId;
#region Delegates

#pragma warning disable
#pragma warning restore

#endregion

/// <summary>
/// CoClass Command
/// SupportByVersion ADODB, 2.1,2.5
/// </summary>
[SupportByVersion("ADODB", 2.1,2.5)]
[EntityType(EntityType.IsCoClass)]
public class Command : _Command
{
#pragma warning disable

#region Fields
private NetRuntimeSystem.Runtime.InteropServices.ComTypes.IConnectionPoint _connectPoint;
private string _activeSinkId;
private static Type _type;

#endregion
Expand All @@ -47,7 +47,7 @@ public override Type InstanceType
/// <summary>
/// Type Cache
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
public static Type LateBindingApiWrapperType
{
get
Expand All @@ -59,77 +59,77 @@ public static Type LateBindingApiWrapperType
}

#endregion
#region Construction
#region Construction

///<param name="factory">current used factory core</param>
///<param name="parentObject">object there has created the proxy</param>
///<param name="factory">current used factory core</param>
///<param name="parentObject">object there has created the proxy</param>
///<param name="comProxy">inner wrapped COM proxy</param>
public Command(Core factory, ICOMObject parentObject, object comProxy) : base(factory, parentObject, comProxy)
{
}
public Command(Core factory, ICOMObject parentObject, object comProxy) : base(factory, parentObject, comProxy)
{
}

///<param name="parentObject">object there has created the proxy</param>
///<param name="comProxy">inner wrapped COM proxy</param>
public Command(ICOMObject parentObject, object comProxy) : base(parentObject, comProxy)
{
}
public Command(ICOMObject parentObject, object comProxy) : base(parentObject, comProxy)
{
}

///<param name="factory">current used factory core</param>
///<param name="parentObject">object there has created the proxy</param>
///<param name="factory">current used factory core</param>
///<param name="parentObject">object there has created the proxy</param>
///<param name="comProxy">inner wrapped COM proxy</param>
///<param name="comProxyType">Type of inner wrapped COM proxy"</param>
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
public Command(Core factory, ICOMObject parentObject, object comProxy, NetRuntimeSystem.Type comProxyType) : base(factory, parentObject, comProxy, comProxyType)
{
}
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
public Command(Core factory, ICOMObject parentObject, object comProxy, NetRuntimeSystem.Type comProxyType) : base(factory, parentObject, comProxy, comProxyType)
{
}

///<param name="parentObject">object there has created the proxy</param>
///<param name="parentObject">object there has created the proxy</param>
///<param name="comProxy">inner wrapped COM proxy</param>
///<param name="comProxyType">Type of inner wrapped COM proxy"</param>
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
public Command(ICOMObject parentObject, object comProxy, NetRuntimeSystem.Type comProxyType) : base(parentObject, comProxy, comProxyType)
{
}
///<param name="replacedObject">object to replaced. replacedObject are not usable after this action</param>
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
public Command(ICOMObject replacedObject) : base(replacedObject)
{
}
/// <summary>
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
public Command(ICOMObject parentObject, object comProxy, NetRuntimeSystem.Type comProxyType) : base(parentObject, comProxy, comProxyType)
{
}
///<param name="replacedObject">object to replaced. replacedObject are not usable after this action</param>
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
public Command(ICOMObject replacedObject) : base(replacedObject)
{
}
/// <summary>
/// Creates a new instance of Command
/// </summary>
public Command():base("ADODB.Command")
{
}
/// <summary>
public Command():base("ADODB.Command")
{
}
/// <summary>
/// Creates a new instance of Command
/// </summary>
///<param name="progId">registered ProgID</param>
public Command(string progId):base(progId)
{
}
public Command(string progId):base(progId)
{
}

#endregion
#endregion

#region Static CoClass Methods
#endregion
#region Static CoClass Methods
#endregion

#region Events
#region Events

#endregion
#endregion

#pragma warning restore
}
#pragma warning restore
}
}

Loading
Loading