Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
0697e57
Format `NetOffice` project using default dotnet formatting rules
jozefizso Jun 27, 2026
b8e26f8
Format `NetOffice.Tests` project using default dotnet formatting rules
jozefizso Jun 27, 2026
07f8ca9
Format `ADODBApi` project using default dotnet formatting rules
jozefizso Jun 27, 2026
cb1e860
Format `DAOApi` project using default dotnet formatting rules
jozefizso Jun 27, 2026
7f53231
Format `MSComctlLibApi` project using default dotnet formatting rules
jozefizso Jun 27, 2026
aca57dc
Format `MSDATASRCApi` project using default dotnet formatting rules
jozefizso Jun 27, 2026
6333e33
Format `OfficeApi` project using default dotnet formatting rules
jozefizso Jun 27, 2026
a45116b
Format `OfficeApi.Extensions` project using default dotnet formatting…
jozefizso Jun 27, 2026
c618f19
Format `VBIDEApi` project using default dotnet formatting rules
jozefizso Jun 27, 2026
d32b420
Format `OWC10Api` project using default dotnet formatting rules
jozefizso Jun 27, 2026
b96a84e
Format `OutlookApi` project using default dotnet formatting rules
jozefizso Jun 27, 2026
90c023f
Format `ExcelApi` project using default dotnet formatting rules
jozefizso Jun 27, 2026
4c9d305
Format `PowerPointApi` project using default dotnet formatting rules
jozefizso Jun 27, 2026
da023ac
Format `WordApi` project using default dotnet formatting rules
jozefizso Jun 27, 2026
81a1b9d
Format `AccessApi` project using default dotnet formatting rules
jozefizso Jun 27, 2026
3df670e
Format `ClientApplication` project using default dotnet formatting rules
jozefizso Jun 27, 2026
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.
44 changes: 22 additions & 22 deletions Source/ADODB/Classes/Command.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ namespace NetOffice.ADODBApi
{
#region Delegates

#pragma warning disable
#pragma warning restore
#pragma warning disable
#pragma warning restore

#endregion

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

#region Fields

private NetRuntimeSystem.Runtime.InteropServices.ComTypes.IConnectionPoint _connectPoint;
private string _activeSinkId;
private static Type _type;
Expand All @@ -43,7 +43,7 @@ public override Type InstanceType
return LateBindingApiWrapperType;
}
}

/// <summary>
/// Type Cache
/// </summary>
Expand All @@ -57,24 +57,24 @@ public static Type LateBindingApiWrapperType
return _type;
}
}

#endregion

#region Construction

///<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)
{

}

///<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)
{

}

///<param name="factory">current used factory core</param>
Expand All @@ -84,7 +84,7 @@ public Command(ICOMObject parentObject, object comProxy) : base(parentObject, co
[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>
Expand All @@ -93,31 +93,31 @@ public Command(Core factory, ICOMObject parentObject, object comProxy, NetRuntim
[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")
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
Expand All @@ -128,8 +128,8 @@ public Command(string progId):base(progId)
#region Events

#endregion
#pragma warning restore

#pragma warning restore
}
}

Loading
Loading